Skip to content

Commit 94979fe

Browse files
committed
Fixed some fragment IDs.
Updated the "previous version" link.
1 parent b7299e1 commit 94979fe

1 file changed

Lines changed: 12 additions & 14 deletions

File tree

selectors4/Overview.src.html

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
2626
<dt>Editor's draft:
2727
-->
2828
<dd><a href="http://dev.w3.org/csswg/selectors4/">
29-
http://dev.w3.org/selectors4/</a>
29+
http://dev.w3.org/csswg/selectors4/</a>
3030

3131
<dt>Latest version of Selectors Level 4:
3232
<dd><a href="http://www.w3.org/TR/selectors4/">
@@ -37,10 +37,8 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
3737
http://www.w3.org/TR/selectors/</a>
3838

3939
<dt>Previous version:
40-
<dd><a href="http://www.w3.org/TR/2011/REC-css3-selectors-20110929/
41-
">
42-
http://www.w3.org/TR/2011/REC-css3-selectors-20110929/
43-
</a>
40+
<dd><a href="http://www.w3.org/TR/2011/WD-selectors4-20110929/">
41+
http://www.w3.org/TR/2011/WD-selectors4-20110929/</a>
4442

4543
<dt>Editors:
4644
<dd class="vcard"><a class="url fn" href="http://fantasai.inkedblade.net/contact">Elika J. Etemad</a> (Mozilla)
@@ -250,7 +248,7 @@ <h2 id=overview>
250248
<td><code>E:dir(ltr)</code>
251249
<td>an element of type E in with left-to-right directionality
252250
(the document language specifies how directionality is determined)
253-
<td><a href="dir-pseudo">The :dir() pseudo-class</a>
251+
<td><a href="#dir-pseudo">The :dir() pseudo-class</a>
254252
<td>2
255253
<tr>
256254
<td><code>E:lang(fr)</code>
@@ -362,7 +360,7 @@ <h2 id=overview>
362360
<tr>
363361
<td><code>E:in-range</code><br><code>E:out-of-range</code>
364362
<td>a user interface element E that
365-
<td><a href="range-pseudos">The validity pseudo-classes</a>
363+
<td><a href="#range-pseudos">The validity pseudo-classes</a>
366364
<td>3-UI/4
367365
<tr>
368366
<td><code>E:required</code><br><code>E:optional</code>
@@ -685,7 +683,7 @@ <h3 id="namespaces">
685683
Namespaces</h3>
686684

687685
<p>Certain selectors support namespace prefixes. The
688-
mechanism by which namespace prefixes are <dfn>declared</dfn> should
686+
mechanism by which namespace prefixes are <dfn id=nsdecl>declared</dfn> should
689687
be specified by the language that uses Selectors. If the language does
690688
not specify a namespace prefix declaration mechanism, then no prefixes
691689
are declared. In CSS, namespace prefixes are declared with the
@@ -873,7 +871,7 @@ <h4 id=typenmsp>
873871

874872
<p>A type selector containing a namespace prefix that has not been
875873
previously <a href="#nsdecl">declared</a> for namespaced selectors is
876-
an <a href="#Conformance">invalid</a> selector.</p>
874+
an <a href="#conformance">invalid</a> selector.</p>
877875

878876
<p>In a namespace-aware client, the name part of element type
879877
selectors (the part after the namespace separator, if it is present)
@@ -983,7 +981,7 @@ <h4 id=univnmsp>
983981

984982
<p>A universal selector containing a namespace prefix that has not
985983
been previously <a href="#nsdecl">declared</a> is an <a
986-
href="#Conformance">invalid</a> selector.</p>
984+
href="#conformance">invalid</a> selector.</p>
987985

988986

989987
<h2 id=attribute-selectors>
@@ -1157,7 +1155,7 @@ <h3 id=attrnmsp>
11571155

11581156
<p>An attribute selector with an attribute name containing a namespace
11591157
prefix that has not been previously <a href="#nsdecl">declared</a> is
1160-
an <a href="#Conformance">invalid</a> selector.</p>
1158+
an <a href="#conformance">invalid</a> selector.</p>
11611159

11621160
<div class="example">
11631161
<p>CSS examples:</p>
@@ -1683,7 +1681,7 @@ <h3 id="dir-pseudo">
16831681
inherits so that a child without a <code>dir</code> attribute will have
16841682
the same directionality as its closest ancestor with a valid <code>dir</code>
16851683
attribute. As another example,
1686-
<a href="http://www.w3.org/TR/html5/#the-directionality">in HTML5</a>,
1684+
<a href="http://www.w3.org/TR/html5/elements.html#the-directionality">in HTML5</a>,
16871685
an element that matches <code>[dir=auto]</code> will match either
16881686
<code>:dir(ltr)</code> or <code>:dir(rtl)</code> depending on the resolved
16891687
directionality of the elements as determined by its contents. [[HTML5]]
@@ -1836,7 +1834,7 @@ <h3 id="validity-pseudos">
18361834
<h3 id="range-pseudos">
18371835
The range pseudo-classes '':in-range'' and '':out-of-range''</h3>
18381836

1839-
<p>The <code id="in-range-psueod">:in-range</code> and
1837+
<p>The <code id="in-range-psuedo">:in-range</code> and
18401838
<code id="out-of-range-pseudo">:out-of-range</code> pseudo-classes
18411839
apply only to elements that have range limitations. An element is
18421840
<code>:in-range</code> or <code>:out-of-range</code> when the value
@@ -2432,7 +2430,7 @@ <h3 id=general-sibling-combinators>
24322430
&lt;pre&gt;function a(x) = 12x/13.5&lt;/pre&gt;</pre>
24332431
</div>
24342432

2435-
<h3 id=idref-combinator>
2433+
<h3 id=idref-combinators>
24362434
Reference combinators</h3>
24372435

24382436
<p>The IDREF combinator consists of two slashes with an indetervening

0 commit comments

Comments
 (0)