@@ -495,7 +495,7 @@ the empty list.</p>
495
495
<dt><code><var> event</var> = new <a constructor lt="Event()">Event</a> (<var> type</var> [, <var>eventInitDict</var>] )</code>
496
496
<dd> Returns a new <var> event</var> whose
497
497
{{Event/type}} attribute value is set to
498
- <var> type</var> . The optional <var> eventInitDict</var> argument
498
+ <var> type</var> . The <var> eventInitDict</var> argument
499
499
allows for setting the {{Event/bubbles}} and
500
500
{{Event/cancelable}} attributes via object
501
501
members of the same name.
@@ -793,7 +793,7 @@ dictionary CustomEventInit : EventInit {
793
793
<dl class=domintro>
794
794
<dt><code><var> event</var> = new <a constructor lt="CustomEvent()">CustomEvent</a> (<var> type</var> [, <var>eventInitDict</var>] )</code>
795
795
<dd> Works analogously to the constructor for {{Event}} except
796
- that the optional <var> eventInitDict</var> argument now
796
+ that the <var> eventInitDict</var> argument now
797
797
allows for setting the {{CustomEvent/detail}} attribute
798
798
too.
799
799
@@ -2646,7 +2646,7 @@ with an optional <i>suppress observers flag</i>, run these steps:
2646
2646
<ol>
2647
2647
<li><p> Run <a>assign slotables for a tree</a> with <var> parent</var> 's <a for=tree>root</a> .
2648
2648
2649
- <li><p> Run <a>assign slotables for a tree</a> with <var> node</var> 's <a for=tree>root</a> .
2649
+ <li><p> Run <a>assign slotables for a tree</a> with <var> node</var> .
2650
2650
</ol>
2651
2651
2652
2652
<li><p> Run the <a>removing steps</a> with <var> node</var> and <var> parent</var> .
@@ -9071,7 +9071,7 @@ must return the <a>context object</a>'s <a for=traversal>filter</a>.
9071
9071
<p> If <var> beforeNode</var> is false, then set it to true.
9072
9072
</dl>
9073
9073
9074
- <li><p> Let <var> result</var> be the result of <a for=Node >filtering</a> <var> node</var> within
9074
+ <li><p> Let <var> result</var> be the result of <a for=/ >filtering</a> <var> node</var> within
9075
9075
<var> iterator</var> .
9076
9076
9077
9077
<li><p> If <var> result</var> is {{NodeFilter/FILTER_ACCEPT}} , then <a for=iteration>break</a> .
@@ -9154,7 +9154,7 @@ these steps:
9154
9154
<ol>
9155
9155
<li><p> Set <var> node</var> to <var> node</var> 's <a for=tree>parent</a> .
9156
9156
9157
- <li><p> If <var> node</var> is non-null and <a for=Node >filtering</a> <var> node</var> within the
9157
+ <li><p> If <var> node</var> is non-null and <a for=/ >filtering</a> <var> node</var> within the
9158
9158
<a>context object</a> returns {{NodeFilter/FILTER_ACCEPT}} , then set the <a>context object</a> 's
9159
9159
<a for=TreeWalker>current</a> to <var> node</var> and return <var> node</var> .
9160
9160
</ol>
@@ -9175,7 +9175,7 @@ these steps:
9175
9175
<p> While <var> node</var> is non-null:
9176
9176
9177
9177
<ol>
9178
- <li><p> Let <var> result</var> be the result of <a for=Node >filtering</a> <var> node</var> within
9178
+ <li><p> Let <var> result</var> be the result of <a for=/ >filtering</a> <var> node</var> within
9179
9179
<var> walker</var> .
9180
9180
9181
9181
<li><p> If <var> result</var> is {{NodeFilter/FILTER_ACCEPT}} , then set <var> walker</var> 's
@@ -9243,7 +9243,7 @@ and <var>type</var>, run these steps:
9243
9243
<ol>
9244
9244
<li><p> Set <var> node</var> to <var> sibling</var> .
9245
9245
9246
- <li><p> Let <var> result</var> be the result of <a for=Node >filtering</a> <var> node</var> within
9246
+ <li><p> Let <var> result</var> be the result of <a for=/ >filtering</a> <var> node</var> within
9247
9247
<var> walker</var> .
9248
9248
9249
9249
<li><p> If <var> result</var> is {{NodeFilter/FILTER_ACCEPT}} , then set <var> walker</var> 's
@@ -9263,8 +9263,8 @@ and <var>type</var>, run these steps:
9263
9263
<li><p> If <var> node</var> is null or <var> walker</var> 's <a for=traversal>root</a> , then return
9264
9264
null.
9265
9265
9266
- <li><p> If the return value of <a for=Node >filtering</a> <var> node</var> within <var> walker</var>
9267
- is {{NodeFilter/FILTER_ACCEPT}} , then return null.
9266
+ <li><p> If the return value of <a for=/ >filtering</a> <var> node</var> within <var> walker</var> is
9267
+ {{NodeFilter/FILTER_ACCEPT}} , then return null.
9268
9268
</ol>
9269
9269
</ol>
9270
9270
@@ -9292,8 +9292,8 @@ these steps:
9292
9292
<ol>
9293
9293
<li><p> Set <var> node</var> to <var> sibling</var> .
9294
9294
9295
- <li><p> Let <var> result</var> be the result of <a for=Node >filtering</a> <var> node</var> within
9296
- the <a>context object</a> .
9295
+ <li><p> Let <var> result</var> be the result of <a for=/ >filtering</a> <var> node</var> within the
9296
+ <a>context object</a> .
9297
9297
9298
9298
<li>
9299
9299
<p> While <var> result</var> is not {{NodeFilter/FILTER_REJECT}} and <var> node</var> has a
@@ -9302,8 +9302,8 @@ these steps:
9302
9302
<ol>
9303
9303
<li><p> Set <var> node</var> to <var> node</var> 's <a for=tree>last child</a> .
9304
9304
9305
- <li><p> Set <var> result</var> to the result of <a for=Node >filtering</a> <var> node</var>
9306
- within the <a>context object</a> .
9305
+ <li><p> Set <var> result</var> to the result of <a for=/ >filtering</a> <var> node</var> within
9306
+ the <a>context object</a> .
9307
9307
</ol>
9308
9308
9309
9309
<li><p> If <var> result</var> is {{NodeFilter/FILTER_ACCEPT}} , then set the
@@ -9318,7 +9318,7 @@ these steps:
9318
9318
9319
9319
<li><p> Set <var> node</var> to <var> node</var> 's <a for=tree>parent</a> .
9320
9320
9321
- <li><p> If the return value of <a for=Node >filtering</a> <var> node</var> within the
9321
+ <li><p> If the return value of <a for=/ >filtering</a> <var> node</var> within the
9322
9322
<a>context object</a> is {{NodeFilter/FILTER_ACCEPT}} , then set the <a>context object</a> 's
9323
9323
<a for=TreeWalker>current</a> to <var> node</var> and return <var> node</var> .
9324
9324
</ol>
@@ -9345,8 +9345,8 @@ steps:
9345
9345
<ol>
9346
9346
<li><p> Set <var> node</var> to its <a for=tree>first child</a> .
9347
9347
9348
- <li><p> Set <var> result</var> to the result of <a for=Node >filtering</a> <var> node</var> within
9349
- the <a>context object</a> .
9348
+ <li><p> Set <var> result</var> to the result of <a for=/ >filtering</a> <var> node</var> within the
9349
+ <a>context object</a> .
9350
9350
9351
9351
<li><p> If <var> result</var> is {{NodeFilter/FILTER_ACCEPT}} , then set the
9352
9352
<a>context object</a> 's <a for=TreeWalker>current</a> to <var> node</var> and return
@@ -9371,8 +9371,8 @@ steps:
9371
9371
<li><p> Set <var> temporary</var> to <var> temporary</var> 's <a for=tree>parent</a> .
9372
9372
</ol>
9373
9373
9374
- <li><p> Set <var> result</var> to the result of <a for=Node >filtering</a> <var> node</var> within
9375
- the <a>context object</a> .
9374
+ <li><p> Set <var> result</var> to the result of <a for=/ >filtering</a> <var> node</var> within the
9375
+ <a>context object</a> .
9376
9376
9377
9377
<li><p> If <var> result</var> is {{NodeFilter/FILTER_ACCEPT}} , then set the <a>context object</a> 's
9378
9378
<a for=TreeWalker>current</a> to <var> node</var> and return <var> node</var> .
@@ -9993,6 +9993,7 @@ Ondřej Žára,
9993
9993
Peter Sharpe,
9994
9994
Philip Jägenstedt,
9995
9995
Philippe Le Hégaret,
9996
+ Pierre-Marie Dartus,
9996
9997
Ra'Shaun Stovall (Snuggs),
9997
9998
Rafael Weinstein,
9998
9999
Richard Bradshaw,
0 commit comments