- From: poot <cvsmail@w3.org>
- Date: Mon, 15 Aug 2011 16:56:47 -0400
- To: public-html-diffs@w3.org
hixie: update to sync to latest selectors syntax (whatwg r6462)
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5163&r2=1.5164&f=h
http://html5.org/tools/web-apps-tracker?from=6461&to=6462
===================================================================
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:48 UTC