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

Side by Side Diff: PerformanceTests/Layout/resources/large-table-with-collapsed-borders.js

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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 (function() {
2 function createElement(tag, parent, className, id) {
3 var el = document.createElement(tag);
4 el.className = className;
5 if (id)
6 el.id = id;
7 parent.appendChild(el);
8 return el;
9 }
10
11 function createTable(width, height, colspan) {
12 var table = createElement("table", document.body, "table");
13 for (var y = 0; y < height; ++y) {
14 var tr = createElement("tr", table, "tr");
15 for (var x = 0; x < width; ++x) {
16 var td = createElement("td", tr, "td");
17 if (colspan > 0 && x==10 && y==0)
18 table.rows[y].cells[x].colSpan = colspan;
19 }
20 }
21 return table;
22 }
23
24 function createTestFunction(width, height, colspan) {
25 return function() {
26 var table = createTable(width, height, colspan);
27 table.clientHeight;
28 }
29 }
30
31 window.createTableTestFunction = createTestFunction;
32 })();
OLDNEW
« no previous file with comments | « PerformanceTests/Layout/resources/large-table-with-collapsed-borders.css ('k') | Source/core/rendering/RenderTable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698