Skip to content

Commit

Permalink
[giow] (0) Make <bdi> always set 'direction'
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=21188
Affected topics: Rendering

git-svn-id: http://svn.whatwg.org/webapps@7930 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 6, 2013
1 parent b7b1df7 commit 9c3e07f
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 @@ -93252,8 +93252,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]:dir(ltr) { direction: ltr; }
[dir]:dir(rtl) { direction: rtl; }
[dir]:dir(ltr), bdi:dir(ltr) { direction: ltr; }
[dir]:dir(rtl), bdi: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 @@ -93252,8 +93252,8 @@ br[clear=all i], br[clear=both i] { clear: both; }</pre>

<pre class=css>@namespace url(http://www.w3.org/1999/xhtml);

[dir]:dir(ltr) { direction: ltr; }
[dir]:dir(rtl) { direction: rtl; }
[dir]:dir(ltr), bdi:dir(ltr) { direction: ltr; }
[dir]:dir(rtl), bdi: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 @@ -104266,8 +104266,8 @@ br[clear=all i], br[clear=both i] { clear: both; }</pre>

<pre class="css">@namespace url(http://www.w3.org/1999/xhtml);

[dir]:dir(ltr) { direction: ltr; }
[dir]:dir(rtl) { direction: rtl; }
[dir]:dir(ltr), bdi:dir(ltr) { direction: ltr; }
[dir]:dir(rtl), bdi: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 9c3e07f

Please sign in to comment.