- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 24 Jul 2011 21:53:27 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/selectors4
In directory hutz:/tmp/cvs-serv1129
Modified Files:
Overview.html Overview.src.html
Log Message:
Add :any-link
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/selectors4/Overview.html,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- Overview.html 24 Jul 2011 21:48:30 -0000 1.31
+++ Overview.html 24 Jul 2011 21:53:25 -0000 1.32
@@ -218,16 +218,19 @@
<li><a href="#location"><span class=secno>7. </span> Location
Pseudo-classes</a>
<ul class=toc>
- <li><a href="#link"><span class=secno>7.1. </span> The link history
+ <li><a href="#any-link-pseudo"><span class=secno>7.1. </span> The
+ any-link pseudo-class: :any-link</a>
+
+ <li><a href="#link"><span class=secno>7.2. </span> The link history
pseudo-classes: :link and :visited</a>
- <li><a href="#here-pseudo"><span class=secno>7.2. </span> The link
+ <li><a href="#here-pseudo"><span class=secno>7.3. </span> The link
location pseudo-class :local-link</a>
- <li><a href="#target-pseudo"><span class=secno>7.3. </span> The target
+ <li><a href="#target-pseudo"><span class=secno>7.4. </span> The target
pseudo-class :target</a>
- <li><a href="#scope-pseudo"><span class=secno>7.4. </span> The scope
+ <li><a href="#scope-pseudo"><span class=secno>7.5. </span> The scope
pseudo-class :scope</a>
</ul>
@@ -1685,7 +1688,13 @@
<h2 id=location><span class=secno>7. </span> Location Pseudo-classes</h2>
- <h3 id=link><span class=secno>7.1. </span> The link history pseudo-classes:
+ <h3 id=any-link-pseudo><span class=secno>7.1. </span> The any-link
+ pseudo-class: :any-link</h3>
+
+ <p>The <code>:any-link</code> pseudo-class represents an element that acts
+ as the source anchor of a hyperlink.
+
+ <h3 id=link><span class=secno>7.2. </span> The link history pseudo-classes:
:link and :visited</h3>
<p>User agents commonly display unvisited links differently from previously
@@ -1722,7 +1731,7 @@
measures to preserve the user's privacy while rendering visited and
unvisited links differently.
- <h3 id=here-pseudo><span class=secno>7.2. </span> The link location
+ <h3 id=here-pseudo><span class=secno>7.3. </span> The link location
pseudo-class :local-link</h3>
<p>The <code>:local-link</code> pseudo-class allows authors to style links
@@ -1814,7 +1823,7 @@
<pre>:not(:local-link(0)) { text-decoration-style: dashed; }</pre>
</div>
- <h3 id=target-pseudo><span class=secno>7.3. </span> The target pseudo-class
+ <h3 id=target-pseudo><span class=secno>7.4. </span> The target pseudo-class
:target</h3>
<p>Some URIs refer to a location within a resource. This kind of URI ends
@@ -1850,7 +1859,7 @@
*:target::before { content : url(target.png) }</pre>
</div>
- <h3 id=scope-pseudo><span class=secno>7.4. </span> The scope pseudo-class
+ <h3 id=scope-pseudo><span class=secno>7.5. </span> The scope pseudo-class
:scope</h3>
<p>The <code>:scope</code> pseudo-class represents any element that is in
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/selectors4/Overview.src.html,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- Overview.src.html 24 Jul 2011 21:48:30 -0000 1.33
+++ Overview.src.html 24 Jul 2011 21:53:25 -0000 1.34
@@ -1208,6 +1208,12 @@
<h2 id=location>
Location Pseudo-classes</h2>
+<h3 id="any-link-pseudo">
+The any-link pseudo-class: :any-link</h3>
+
+ <p>The <code>:any-link</code> pseudo-class represents an element
+ that acts as the source anchor of a hyperlink.
+
<h3 id=link>
The link history pseudo-classes: :link and :visited</h3>
Received on Sunday, 24 July 2011 21:53:27 UTC