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

Side by Side Diff: LayoutTests/fast/table/crash-split-table-section-no-cell-recalc.html

Issue 10909089: Merge 126251 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/fast/table/crash-split-table-section-no-cell-recalc-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 A<div></div> 3 A<div></div>
4 <div id="div1"></div> 4 <div id="div1"></div>
5 <style> 5 <style>
6 * { display: table-cell; } 6 * { display: table-cell; }
7 .class1 { -webkit-appearance: sliderthumb-vertical; } 7 .class1 { -webkit-appearance: sliderthumb-vertical; }
8 </style> 8 </style>
9 <script> 9 <script>
10 if (window.testRunner) 10 if (window.testRunner)
11 testRunner.dumpAsText(); 11 testRunner.dumpAsText();
12 12
13 document.addEventListener("DOMContentLoaded", crash, false); 13 document.addEventListener("DOMContentLoaded", crash, false);
14 function crash() { 14 function crash() {
15 div1 = document.getElementById("div1"); 15 div1 = document.getElementById("div1");
16 div1.style.display = "table-row-group"; 16 div1.style.display = "table-row-group";
17 document.documentElement.offsetTop; 17 document.documentElement.offsetTop;
18 div1.setAttribute("class", "class1"); 18 div1.setAttribute("class", "class1");
19 document.documentElement.offsetTop; 19 document.documentElement.offsetTop;
20 document.documentElement.innerHTML = "<a href='https://bugs.webkit.org/show_ bug.cgi?id=94291'>94291</a>: Crash in RenderTableSection::setCellLogicalWidths<b r/>This test has PASSED as it didn't CRASH or ASSERT."; 20 document.documentElement.innerHTML = "<a href='https://bugs.webkit.org/show_ bug.cgi?id=94291'>94291</a>: Crash in RenderTableSection::setCellLogicalWidths<b r/>This test has PASSED as it didn't CRASH or ASSERT.";
21 } 21 }
22 </script> 22 </script>
23 </html> 23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/table/crash-split-table-section-no-cell-recalc-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698