- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 12 Aug 2010 05:23:06 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv32393
Modified Files:
Overview.html
Log Message:
Set 'unicode-bidi: embed' on non-inline elements to preserve bidi behaviour when setting them to inline. (whatwg r5284)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4209
retrieving revision 1.4210
diff -u -d -r1.4209 -r1.4210
--- Overview.html 11 Aug 2010 22:03:22 -0000 1.4209
+++ Overview.html 12 Aug 2010 05:23:03 -0000 1.4210
@@ -311,7 +311,7 @@
<h1>HTML5</h1>
<h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
- <h2 class="no-num no-toc" id="editor-s-draft-11-august-2010">Editor's Draft 11 August 2010</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-12-august-2010">Editor's Draft 12 August 2010</h2>
<dl><dt>Latest Published Version:</dt>
<dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -417,7 +417,7 @@
Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation
track.
- This specification is the 11 August 2010 Editor's Draft.
+ This specification is the 12 August 2010 Editor's Draft.
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
@@ -60896,24 +60896,24 @@
address, article, aside, blockquote, body, center, dd, dir, div, dl,
dt, figure, figcaption, footer, form, h1, h2, h3, h4, h5, h6, header,
hgroup, hr, html, legend, listing, menu, nav, ol, p, plaintext, pre,
-section, summary, ul, xmp { display: block; }
+section, summary, ul, xmp { display: block; unicode-bidi: embed; }
-table { display: table; }
-caption { display: table-caption; }
-colgroup, colgroup[hidden] { display: table-column-group; }
-col, col[hidden] { display: table-column; }
-thead, thead[hidden] { display: table-header-group; }
-tbody, tbody[hidden] { display: table-row-group; }
-tfoot, tfoot[hidden] { display: table-footer-group; }
-tr, tr[hidden] { display: table-row; }
-td, th, td[hidden], th[hidden] { display: table-cell; }
+table { display: table; unicode-bidi: embed; }
+caption { display: table-caption; unicode-bidi: embed; }
+colgroup, colgroup[hidden] { display: table-column-group; unicode-bidi: embed; }
+col, col[hidden] { display: table-column; unicode-bidi: embed; }
+thead, thead[hidden] { display: table-header-group; unicode-bidi: embed; }
+tbody, tbody[hidden] { display: table-row-group; unicode-bidi: embed; }
+tfoot, tfoot[hidden] { display: table-footer-group; unicode-bidi: embed; }
+tr, tr[hidden] { display: table-row; unicode-bidi: embed; }
+td, th, td[hidden], th[hidden] { display: table-cell; unicode-bidi: embed; }
colgroup[hidden], col[hidden], thead[hidden], tbody[hidden],
tfoot[hidden], tr[hidden], td[hidden], th[hidden] {
visibility: collapse;
}
-li { display: list-item; }
+li { display: list-item; unicode-bidi: embed; }
ruby { display: ruby; }
rt { display: ruby-text; }</pre>
Received on Thursday, 12 August 2010 05:23:08 UTC