[html5] r6462 - [e] (0) update to sync to latest selectors syntax Fixing http://www.w3.org/Bugs/ [...]

whatwg at whatwg.org whatwg at whatwg.org
Mon Aug 15 13:56:07 PDT 2011


Author: ianh
Date: 2011-08-15 13:56:05 -0700 (Mon, 15 Aug 2011)
New Revision: 6462

Modified:
   complete.html
   index
   source
Log:
[e] (0) update to sync to latest selectors syntax
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=13346

Modified: complete.html
===================================================================
--- complete.html	2011-08-15 20:30:08 UTC (rev 6461)
+++ complete.html	2011-08-15 20:56:05 UTC (rev 6462)
@@ -56628,21 +56628,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>
 
@@ -92669,8 +92669,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; }

Modified: index
===================================================================
--- index	2011-08-15 20:30:08 UTC (rev 6461)
+++ index	2011-08-15 20:56:05 UTC (rev 6462)
@@ -56495,21 +56495,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>
 
@@ -88116,8 +88116,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; }

Modified: source
===================================================================
--- source	2011-08-15 20:30:08 UTC (rev 6461)
+++ source	2011-08-15 20:56:05 UTC (rev 6462)
@@ -63850,22 +63850,22 @@
    </dd>
 
 
-   <dt><dfn title="selector-ltr"><code>:ltr</code></dfn></dt>
+   <dt><dfn title="selector-ltr"><code>:dir(ltr)</code></dfn></dt>
 
    <dd>
 
-    <p>The <code title="selector-ltr">:ltr</code> pseudo-class must
+    <p>The <code title="selector-ltr">:dir(ltr)</code> pseudo-class must
     match all elements whose <span title="the
     directionality">directionality</span> is '<span
     title="concept-ltr">ltr</span>'.</p>
 
    </dd>
 
-   <dt><dfn title="selector-rtl"><code>:rtl</code></dfn></dt>
+   <dt><dfn title="selector-rtl"><code>:dir(rtl)</code></dfn></dt>
 
    <dd>
 
-    <p>The <code title="selector-rtl">:rtl</code> pseudo-class must
+    <p>The <code title="selector-rtl">:dir(rtl)</code> pseudo-class must
     match all elements whose <span title="the
     directionality">directionality</span> is '<span
     title="concept-rtl">rtl</span>'.</p>
@@ -104994,8 +104994,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; }




More information about the Commit-Watchers mailing list