Skip to content

Commit bbf3821

Browse files
committed
[selectors] Rename Following-sibling combinator to Subsequent-sibling combinator per WG resolution. Fixes #1382
1 parent 48d8984 commit bbf3821

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

selectors-3/Overview.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ <h2 class="no-num no-toc" id=contents>Table of contents</h2>
365365
</span>Next-sibling combinator</a>
366366

367367
<li><a href="#general-sibling-combinators"><span class=secno>8.3.2.
368-
</span>Following-sibling combinator</a>
368+
</span>Subsequent-sibling combinator</a>
369369
</ul>
370370
</ul>
371371

@@ -883,7 +883,7 @@ <h2 id=selectors><span class=secno>2. </span>Selectors</h2>
883883
<td class=meaning>an F element preceded by an E element
884884

885885
<td class=described><a
886-
href="#general-sibling-combinators">Following-sibling combinator</a>
886+
href="#general-sibling-combinators">Subsequent-sibling combinator</a>
887887

888888
<td class=origin>3
889889
</table>
@@ -2878,7 +2878,7 @@ <h3 id=sibling-combinators><span class=secno>8.3. </span>Sibling
28782878
combinators</h3>
28792879

28802880
<p>There are two different sibling combinators: the next-sibling combinator
2881-
and the following-sibling combinator. In both cases, non-element nodes
2881+
and the subsequent-sibling combinator. In both cases, non-element nodes
28822882
(e.g. text between elements) are ignored when considering adjacency of
28832883
elements.
28842884

@@ -2909,9 +2909,9 @@ <h4 id=adjacent-sibling-combinators><span class=secno>8.3.1.
29092909
</div>
29102910

29112911
<h4 id=general-sibling-combinators><span class=secno>8.3.2.
2912-
</span>Following-sibling combinator</h4>
2912+
</span>Subsequent-sibling combinator</h4>
29132913

2914-
<p>The <dfn id=following-sibling-combinator>following-sibling
2914+
<p>The <dfn id=subsequent-sibling-combinator>subsequent-sibling
29152915
combinator</dfn> is made of the &quot;tilde&quot; (U+007E, <code>~</code>)
29162916
character that separates two sequences of simple selectors. The elements
29172917
represented by the two sequences share the same parent in the document
@@ -3236,7 +3236,7 @@ <h2 id=profiling><span class=secno>11. </span>Profiles</h2>
32363236
all UI element states pseudo-classes<br>
32373237
all structural pseudo-classes other than :first-child<br>
32383238
negation pseudo-class <br>
3239-
following-sibling combinators
3239+
subsequent-sibling combinators
32403240

32413241
<p>namespaces
32423242

selectors-3/Overview.src.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ <h2 id=selectors>Selectors</h2>
478478
<td class="pattern">E ~ F</td>
479479
<td class="meaning">an F element preceded by an E element</td>
480480
<td class="described"><a
481-
href="#general-sibling-combinators">Following-sibling combinator</a></td>
481+
href="#general-sibling-combinators">Subsequent-sibling combinator</a></td>
482482
<td class="origin">3</td></tr></tbody></table>
483483

484484
<h2 id=casesens>Case sensitivity</h2>
@@ -2245,7 +2245,7 @@ <h3 id=child-combinators>Child combinators</h3>
22452245
<h3 id=sibling-combinators>Sibling combinators</h3>
22462246

22472247
<p>There are two different sibling combinators: the next-sibling
2248-
combinator and the following-sibling combinator. In both cases,
2248+
combinator and the subsequent-sibling combinator. In both cases,
22492249
non-element nodes (e.g. text between elements) are ignored when
22502250
considering adjacency of elements.</p>
22512251

@@ -2271,9 +2271,9 @@ <h4 id=adjacent-sibling-combinators>Next-sibling combinator</h4>
22712271
</div>
22722272

22732273

2274-
<h4 id=general-sibling-combinators>Following-sibling combinator</h4>
2274+
<h4 id=general-sibling-combinators>Subsequent-sibling combinator</h4>
22752275

2276-
<p>The <dfn>following-sibling combinator</dfn> is made of the &quot;tilde&quot;
2276+
<p>The <dfn>subsequent-sibling combinator</dfn> is made of the &quot;tilde&quot;
22772277
(U+007E, <code>~</code>) character that separates two sequences of
22782278
simple selectors. The elements represented by the two sequences share
22792279
the same parent in the document tree and the element represented by
@@ -2553,7 +2553,7 @@ <h2 id=profiling>Profiles</h2>
25532553
selectors<br>:target pseudo-classes<br>all UI element
25542554
states pseudo-classes<br>all structural pseudo-classes other
25552555
than :first-child<br>negation pseudo-class
2556-
<br>following-sibling combinators
2556+
<br>subsequent-sibling combinators
25572557

25582558
<p>namespaces</td></tr>
25592559
<tr>

selectors/Overview.bs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ Structure and Terminology</h3>
551551
the <a>descendant combinator</a> (white space),
552552
the <a>child combinator</a> (U+003E, <code>></code>),
553553
the <a>next-sibling combinator</a> (U+002B, <code>+</code>),
554-
and the <a>following-sibling combinator</a> (U+007E, <code>~</code>).
554+
and the <a>subsequent-sibling combinator</a> (U+007E, <code>~</code>).
555555

556556
A <dfn export lt="list of simple selectors|list of compound selectors|list of complex selectors">list of simple/compound/complex selectors</dfn>
557557
is a comma-separated list of
@@ -2940,9 +2940,9 @@ Next-sibling combinator (<code>+</code>)</h3>
29402940

29412941

29422942
<h3 id="general-sibling-combinators">
2943-
Following-sibling combinator (<code>~</code>)</h3>
2943+
Subsequent-sibling combinator (<code>~</code>)</h3>
29442944

2945-
The <dfn export id="following-sibling-combinator">following-sibling combinator</dfn> is made of the &quot;tilde&quot;
2945+
The <dfn export id="subsequent-sibling-combinator">subsequent-sibling combinator</dfn> is made of the &quot;tilde&quot;
29462946
(U+007E, <dfn selector id=selectordef-sibling>~</dfn>) code point that separates two <a>compound selectors</a>.
29472947
The elements represented by the two <a>compound selectors</a> share
29482948
the same parent in the document tree and the element represented by

0 commit comments

Comments
 (0)