Skip to content

Commit f7e2be1

Browse files
committed
[css-transitions] Fix transition event linking
1) Change the id events to just "transitionend" etc. (this is the convention used in the currently published WD) 2) Change the location of the definition to the actual spot where it is defined not the spot where we define the on* handlers.
1 parent 9d0e501 commit f7e2be1

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

css-transitions/Overview.bs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,7 @@ Types of <code>TransitionEvent</code> {#event-transitionevent}
12401240
The different types of transition events that can occur are:
12411241

12421242
<dl dfn-type=event dfn-for=transitionevent>
1243-
<dt><dfn>transitionrun</dfn></dt>
1243+
<dt><dfn id=transitionrun>transitionrun</dfn></dt>
12441244
<dd>
12451245
The {{transitionrun}} event occurs when a transition is created (i.e.,
12461246
when it is added to the set of <a>running transitions</a>).
@@ -1257,7 +1257,7 @@ The different types of transition events that can occur are:
12571257
</ul>
12581258
</dd>
12591259

1260-
<dt><dfn>transitionstart</dfn></dt>
1260+
<dt><dfn id=transitionstart>transitionstart</dfn></dt>
12611261
<dd>
12621262
The {{transitionstart}} event occurs when a transition's delay phase ends.
12631263

@@ -1270,7 +1270,7 @@ The different types of transition events that can occur are:
12701270
</ul>
12711271
</dd>
12721272

1273-
<dt><dfn>transitionend</dfn></dt>
1273+
<dt><dfn id=transitionend>transitionend</dfn></dt>
12741274
<dd>
12751275
The {{transitionend}} event occurs at the completion of the transition. In
12761276
the case where a transition is removed before completion, such as if the
@@ -1285,7 +1285,7 @@ The different types of transition events that can occur are:
12851285
</ul>
12861286
</dd>
12871287

1288-
<dt><dfn>transitioncancel</dfn></dt>
1288+
<dt><dfn id=transitioncancel>transitioncancel</dfn></dt>
12891289
<dd>
12901290
The {{transitioncancel}} event occurs when a transition is <a
12911291
lt="cancel">cancelled</a>.
@@ -1323,19 +1323,19 @@ objects, as <a>event handler IDL attributes</a>:
13231323
</tr>
13241324
<tr>
13251325
<td><dfn>ontransitionrun</dfn></td>
1326-
<td><dfn><a idl>transitionrun</a></dfn></td>
1326+
<td><a idl>transitionrun</a></td>
13271327
</tr>
13281328
<tr>
13291329
<td><dfn>ontransitionstart</dfn></td>
1330-
<td><dfn><a idl>transitionstart</a></dfn></td>
1330+
<td><a idl>transitionstart</a></td>
13311331
</tr>
13321332
<tr>
13331333
<td><dfn>ontransitionend</dfn></td>
1334-
<td><dfn><a idl>transitionend</a></dfn></td>
1334+
<td><a idl>transitionend</a></td>
13351335
</tr>
13361336
<tr>
13371337
<td><dfn>ontransitioncancel</dfn></td>
1338-
<td><dfn><a idl>transitioncancel</a></dfn></td>
1338+
<td><a idl>transitioncancel</a></td>
13391339
</tr>
13401340
</table>
13411341

0 commit comments

Comments
 (0)