- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 15 Oct 2010 00:18:38 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv22488
Modified Files:
Overview.html
Log Message:
Update bidi algorithm CSS mappings to use new features. (whatwg r5635)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4510
retrieving revision 1.4511
diff -u -d -r1.4510 -r1.4511
--- Overview.html 14 Oct 2010 22:31:55 -0000 1.4510
+++ Overview.html 15 Oct 2010 00:18:35 -0000 1.4511
@@ -63349,24 +63349,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; unicode-bidi: embed; }
+section, summary, ul, xmp { display: block; unicode-bidi: isolate; }
-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; }
+table { display: table; unicode-bidi: isolate; }
+caption { display: table-caption; unicode-bidi: isolate; }
+colgroup, colgroup[hidden] { display: table-column-group; unicode-bidi: isolate; }
+col, col[hidden] { display: table-column; unicode-bidi: isolate; }
+thead, thead[hidden] { display: table-header-group; unicode-bidi: isolate; }
+tbody, tbody[hidden] { display: table-row-group; unicode-bidi: isolate; }
+tfoot, tfoot[hidden] { display: table-footer-group; unicode-bidi: isolate; }
+tr, tr[hidden] { display: table-row; unicode-bidi: isolate; }
+td, th, td[hidden], th[hidden] { display: table-cell; unicode-bidi: isolate; }
colgroup[hidden], col[hidden], thead[hidden], tbody[hidden],
tfoot[hidden], tr[hidden], td[hidden], th[hidden] {
visibility: collapse;
}
-li { display: list-item; unicode-bidi: embed; }
+li { display: list-item; unicode-bidi: isolate; }
ruby { display: ruby; }
rt { display: ruby-text; }</pre>
@@ -64009,6 +64009,8 @@
table { border-style: outset; }
td, th { border-style: inset; }
+output { unicode-bidi: isolate; }
+
[dir=ltr] { direction: ltr; unicode-bidi: embed; } /* <a href="#case-insensitive-selector-exception">case-insensitive</a> */
[dir=rtl] { direction: rtl; unicode-bidi: embed; } /* <a href="#case-insensitive-selector-exception">case-insensitive</a> */
bdo[dir=ltr], bdo[dir=rtl] { unicode-bidi: bidi-override; } /* <a href="#case-insensitive-selector-exception">case-insensitive</a> */</pre>
Received on Friday, 15 October 2010 00:18:41 UTC