Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Unified Diff: PerformanceTests/Layout/resources/large-table-with-collapsed-borders.css

Issue 154243002: Optimize RenderTable::colToEffCol() for tables without colspans (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: PerformanceTests/Layout/resources/large-table-with-collapsed-borders.css
diff --git a/PerformanceTests/Layout/resources/large-table-with-collapsed-borders.css b/PerformanceTests/Layout/resources/large-table-with-collapsed-borders.css
new file mode 100644
index 0000000000000000000000000000000000000000..b936e5d099605790c7ac6ffd2b7bf74edac73cd4
--- /dev/null
+++ b/PerformanceTests/Layout/resources/large-table-with-collapsed-borders.css
@@ -0,0 +1,14 @@
+html, body {
+ margin: 0;
+}
+
+table {
+ border-collapse: collapse;
+ border : 1px solid red;
+}
+td {
+ border : 1px solid blue;
+ width: 5px;
+ height: 5px;
+}
+

Powered by Google App Engine
This is Rietveld 408576698