[html5] r5197 - [giow] (0) Make hidden='' work for table-related elements.
whatwg at whatwg.org
whatwg at whatwg.org
Fri Jul 23 16:21:02 PDT 2010
Author: ianh
Date: 2010-07-23 16:21:01 -0700 (Fri, 23 Jul 2010)
New Revision: 5197
Modified:
complete.html
index
source
Log:
[giow] (0) Make hidden='' work for table-related elements.
Modified: complete.html
===================================================================
--- complete.html 2010-07-23 23:15:16 UTC (rev 5196)
+++ complete.html 2010-07-23 23:21:01 UTC (rev 5197)
@@ -85697,13 +85697,17 @@
table { display: table; }
caption { display: table-caption; }
-colgroup { display: table-column-group; }
-col { display: table-column; }
-thead { display: table-header-group; }
-tbody { display: table-row-group; }
-tfoot { display: table-footer-group; }
-tr { display: table-row; }
-td, th { display: table-cell; }
+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; }
+colgroup[hidden], col[hidden], thead[hidden], tbody[hidden],
+tfoot[hidden], tr[hidden], td[hidden], th[hidden] {
+ visibility: collapse;
+}
li { display: list-item; }
Modified: index
===================================================================
--- index 2010-07-23 23:15:16 UTC (rev 5196)
+++ index 2010-07-23 23:21:01 UTC (rev 5197)
@@ -78743,13 +78743,17 @@
table { display: table; }
caption { display: table-caption; }
-colgroup { display: table-column-group; }
-col { display: table-column; }
-thead { display: table-header-group; }
-tbody { display: table-row-group; }
-tfoot { display: table-footer-group; }
-tr { display: table-row; }
-td, th { display: table-cell; }
+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; }
+colgroup[hidden], col[hidden], thead[hidden], tbody[hidden],
+tfoot[hidden], tr[hidden], td[hidden], th[hidden] {
+ visibility: collapse;
+}
li { display: list-item; }
Modified: source
===================================================================
--- source 2010-07-23 23:15:16 UTC (rev 5196)
+++ source 2010-07-23 23:21:01 UTC (rev 5197)
@@ -97757,13 +97757,17 @@
table { display: table; }
caption { display: table-caption; }
-colgroup { display: table-column-group; }
-col { display: table-column; }
-thead { display: table-header-group; }
-tbody { display: table-row-group; }
-tfoot { display: table-footer-group; }
-tr { display: table-row; }
-td, th { display: table-cell; }
+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; }
+colgroup[hidden], col[hidden], thead[hidden], tbody[hidden],
+tfoot[hidden], tr[hidden], td[hidden], th[hidden] {
+ visibility: collapse;
+}
li { display: list-item; }
More information about the Commit-Watchers
mailing list