- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 12 Aug 2010 05:28:16 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv474 Modified Files: rendering.html spec.html Log Message: Set 'unicode-bidi: embed' on non-inline elements to preserve bidi behaviour when setting them to inline. (whatwg r5284) [updated by splitter] Index: rendering.html =================================================================== RCS file: /sources/public/html5/spec/rendering.html,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- rendering.html 11 Aug 2010 22:07:00 -0000 1.16 +++ rendering.html 12 Aug 2010 05:28:13 -0000 1.17 @@ -439,24 +439,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> Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1133 retrieving revision 1.1134 diff -u -d -r1.1133 -r1.1134 --- spec.html 11 Aug 2010 22:07:00 -0000 1.1133 +++ spec.html 12 Aug 2010 05:28:13 -0000 1.1134 @@ -315,7 +315,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> @@ -336,7 +336,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">author edition</a>. -This is revision 1.4209. +This is revision 1.4210. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide @@ -421,7 +421,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
Received on Thursday, 12 August 2010 05:28:17 UTC