diff --git a/css-animations-2/Overview.bs b/css-animations-2/Overview.bs
index 81573af9a92a..76eab389af49 100644
--- a/css-animations-2/Overview.bs
+++ b/css-animations-2/Overview.bs
@@ -878,6 +878,33 @@ expressed in milliseconds, it must be divided by 1,000 to produce a value in
seconds before being assigned to the {{AnimationEvent/elapsedTime}} member of
the {{AnimationEvent}}.
+## The AnimationEvent Interface ## {#interface-animationevent}
+
+### IDL Definition ### {#interface-animationevent-idl}
+
+Add {{AnimationEvent/animation}} to the {{AnimationEvent}} interface and {{AnimationEventInit}} dictionary as follows:
+
+
+[Exposed=Window]
+partial interface AnimationEvent {
+ readonly attribute CSSAnimation? animation;
+};
+
+partial dictionary AnimationEventInit {
+ CSSAnimation? animation = null;
+};
+
+
+### Attributes ### {#interface-animationevent-attributes}
+
+Add attribute descriptions as follows:
+
+
+[Exposed=Window]
+partial interface TransitionEvent {
+ readonly attribute CSSTransition? animation;
+};
+
+partial dictionary TransitionEventInit {
+ CSSTransition? animation = null;
+};
+
+
+### Attributes ### {#interface-transitionevent-attributes}
+
+Add attribute descriptions as follows:
+
+: animation
+:: The CSS Transition corresponding to the transition that fired the event.
+
# DOM Interfaces # {#interface-dom}
## The CSSTransition interface ## {#the-CSSTransition-interface}