OLD | NEW |
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> |
OLD | NEW |