Skip to content

Commit f6034a9

Browse files
committed
[css-transitions] Say what the target of transition events is.
(Thanks to Cameron McCormack for pointing this out.)
1 parent 6a7ee4f commit f6034a9

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

css-transitions/Overview.bs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ url: http://dev.w3.org/csswg/css-color-3/#transparent; type: value; text: transp
9090
url: http://dev.w3.org/csswg/css-color-3/#html4; type: value; text: blue;
9191
url: http://dev.w3.org/csswg/css-color-3/#html4; type: value; text: green;
9292
url: http://w3c.github.io/dom/#constructing-events; type: dfn; text: event constructor;
93+
url: https://html.spec.whatwg.org/multipage/infrastructure.html#concept-event-dispatch; type: dfn; text: dispatch;
94+
url: https://html.spec.whatwg.org/multipage/infrastructure.html#concept-event-dispatch; type: dfn; text: dispatched;
9395
</pre>
9496
</dl>
9597

@@ -1125,7 +1127,8 @@ url: http://w3c.github.io/dom/#constructing-events; type: dfn; text: event const
11251127
</span></h2>
11261128
<p>
11271129
The completion of a CSS Transition generates a corresponding <a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html">DOM Event</a>.
1128-
An event is fired for each property that undergoes a transition.
1130+
An event is <a>dispatched</a> to the element
1131+
for each property that undergoes a transition on that element.
11291132
This allows a content developer to perform actions that synchronize
11301133
with the completion of a transition.
11311134
</p>

css-transitions/Overview.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
<h1 class="p-name no-ref" id="title">CSS Transitions</h1>
100100

101101
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Editor’s Draft,
102-
<time class="dt-updated" datetime="2015-02-16">16 February 2015</time></span></h2>
102+
<time class="dt-updated" datetime="2015-02-19">19 February 2015</time></span></h2>
103103

104104
<div data-fill-with="spec-metadata">
105105
<dl>
@@ -1650,7 +1650,8 @@ <h2 class="heading settled" data-level="6" id="transition-events"><span class="s
16501650

16511651
<p>
16521652
The completion of a CSS Transition generates a corresponding <a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html">DOM Event</a>.
1653-
An event is fired for each property that undergoes a transition.
1653+
An event is <a data-link-type="dfn" href="https://html.spec.whatwg.org/multipage/infrastructure.html#concept-event-dispatch">dispatched</a> to the element
1654+
for each property that undergoes a transition on that element.
16541655
This allows a content developer to perform actions that synchronize
16551656
with the completion of a transition.
16561657
</p>

0 commit comments

Comments
 (0)