- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 15 Aug 2011 20:56:36 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv11853
Modified Files:
Overview.html
Log Message:
update to sync to latest selectors syntax (whatwg r6462)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5163
retrieving revision 1.5164
diff -u -d -r1.5163 -r1.5164
--- Overview.html 15 Aug 2011 20:30:39 -0000 1.5163
+++ Overview.html 15 Aug 2011 20:56:32 -0000 1.5164
@@ -43118,21 +43118,21 @@
</dd>
- <dt><dfn id="selector-ltr" title="selector-ltr"><code>:ltr</code></dfn></dt>
+ <dt><dfn id="selector-ltr" title="selector-ltr"><code>:dir(ltr)</code></dfn></dt>
<dd>
- <p>The <code title="selector-ltr"><a href="#selector-ltr">:ltr</a></code> pseudo-class must
+ <p>The <code title="selector-ltr"><a href="#selector-ltr">:dir(ltr)</a></code> pseudo-class must
match all elements whose <a href="#the-directionality" title="the
directionality">directionality</a> is '<a href="#concept-ltr" title="concept-ltr">ltr</a>'.</p>
</dd>
- <dt><dfn id="selector-rtl" title="selector-rtl"><code>:rtl</code></dfn></dt>
+ <dt><dfn id="selector-rtl" title="selector-rtl"><code>:dir(rtl)</code></dfn></dt>
<dd>
- <p>The <code title="selector-rtl"><a href="#selector-rtl">:rtl</a></code> pseudo-class must
+ <p>The <code title="selector-rtl"><a href="#selector-rtl">:dir(rtl)</a></code> pseudo-class must
match all elements whose <a href="#the-directionality" title="the
directionality">directionality</a> is '<a href="#concept-rtl" title="concept-rtl">rtl</a>'.</p>
@@ -64513,8 +64513,8 @@
<pre class="css">@namespace url(http://www.w3.org/1999/xhtml);
-:ltr { direction: ltr; }
-:rtl { direction: rtl; }
+:dir(ltr) { direction: ltr; }
+:dir(rtl) { direction: rtl; }
[dir] { unicode-bidi: embed; }
bdi, output, [dir=auto] { unicode-bidi: isolate; } /* <a href="#case-insensitive-selector-exception">case-insensitive</a> */
bdo, bdo[dir] { unicode-bidi: bidi-override; }
Received on Monday, 15 August 2011 20:56:42 UTC