[html5] r7887 - [giow] (3) Shouldn't force-set 'direction' on every element, only those that men [...]
whatwg at whatwg.org
whatwg at whatwg.org
Mon Jun 3 16:16:34 PDT 2013
Author: ianh
Date: 2013-06-03 16:16:33 -0700 (Mon, 03 Jun 2013)
New Revision: 7887
Modified:
complete.html
index
source
Log:
[giow] (3) Shouldn't force-set 'direction' on every element, only those that mention dir=''.
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=21188
Affected topics: Rendering
Modified: complete.html
===================================================================
--- complete.html 2013-06-03 19:56:21 UTC (rev 7886)
+++ complete.html 2013-06-03 23:16:33 UTC (rev 7887)
@@ -93227,8 +93227,8 @@
<pre class=css>@namespace url(http://www.w3.org/1999/xhtml);
-:dir(ltr) { direction: ltr; }
-:dir(rtl) { direction: rtl; }
+[dir]:dir(ltr) { direction: ltr; }
+[dir]:dir(rtl) { direction: rtl; }
address, blockquote, center, div, figure, figcaption, footer, form,
header, hr, legend, listing, main, p, plaintext, pre, summary, xmp, article,
Modified: index
===================================================================
--- index 2013-06-03 19:56:21 UTC (rev 7886)
+++ index 2013-06-03 23:16:33 UTC (rev 7887)
@@ -93227,8 +93227,8 @@
<pre class=css>@namespace url(http://www.w3.org/1999/xhtml);
-:dir(ltr) { direction: ltr; }
-:dir(rtl) { direction: rtl; }
+[dir]:dir(ltr) { direction: ltr; }
+[dir]:dir(rtl) { direction: rtl; }
address, blockquote, center, div, figure, figcaption, footer, form,
header, hr, legend, listing, main, p, plaintext, pre, summary, xmp, article,
Modified: source
===================================================================
--- source 2013-06-03 19:56:21 UTC (rev 7886)
+++ source 2013-06-03 23:16:33 UTC (rev 7887)
@@ -104239,8 +104239,8 @@
<pre class="css">@namespace url(http://www.w3.org/1999/xhtml);
-:dir(ltr) { direction: ltr; }
-:dir(rtl) { direction: rtl; }
+[dir]:dir(ltr) { direction: ltr; }
+[dir]:dir(rtl) { direction: rtl; }
address, blockquote, center, div, figure, figcaption, footer, form,
header, hr, legend, listing, main, p, plaintext, pre, summary, xmp, article,
More information about the Commit-Watchers
mailing list