[html5] r7278 - [giow] (2) turns out 'table' needs box-sizing:border-box for compat with gecko a [...]
whatwg at whatwg.org
whatwg at whatwg.org
Sun Aug 26 18:16:10 PDT 2012
Author: ianh
Date: 2012-08-26 18:16:09 -0700 (Sun, 26 Aug 2012)
New Revision: 7278
Modified:
complete.html
index
source
Log:
[giow] (2) turns out 'table' needs box-sizing:border-box for compat with gecko and opera. in webkit it's quirks-only. (couldn't test IE)
Affected topics: Rendering
Modified: complete.html
===================================================================
--- complete.html 2012-08-27 01:02:53 UTC (rev 7277)
+++ complete.html 2012-08-27 01:16:09 UTC (rev 7278)
@@ -97402,6 +97402,7 @@
}
table {
+ box-sizing: border-box;
border-spacing: 2px;
border-collapse: separate;
text-indent: initial;
Modified: index
===================================================================
--- index 2012-08-27 01:02:53 UTC (rev 7277)
+++ index 2012-08-27 01:16:09 UTC (rev 7278)
@@ -97402,6 +97402,7 @@
}
table {
+ box-sizing: border-box;
border-spacing: 2px;
border-collapse: separate;
text-indent: initial;
Modified: source
===================================================================
--- source 2012-08-27 01:02:53 UTC (rev 7277)
+++ source 2012-08-27 01:16:09 UTC (rev 7278)
@@ -112653,6 +112653,7 @@
}
table {
+ box-sizing: border-box;
border-spacing: 2px;
border-collapse: separate;
text-indent: initial;
More information about the Commit-Watchers
mailing list