Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[giow] (3) Shouldn't force-set 'direction' on every element, only tho…
…se that mention dir=''.

Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=21188
Affected topics: Rendering

git-svn-id: http://svn.whatwg.org/webapps@7887 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 3, 2013
1 parent ba3f8e1 commit 55c08f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -93227,8 +93227,8 @@ <h4 id=phrasing-content-1><span class=secno>14.3.4 </span>Phrasing content</h4>

<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,
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -93227,8 +93227,8 @@ br[clear=all i], br[clear=both i] { clear: both; }</pre>

<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,
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -104239,8 +104239,8 @@ br[clear=all i], br[clear=both i] { clear: both; }</pre>

<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,
Expand Down

0 comments on commit 55c08f4

Please sign in to comment.