OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html class="crash"> | 2 <html class="crash"> |
3 <style> | 3 <style> |
4 .crash { | 4 .crash { |
5 overflow:scroll; | 5 overflow:scroll; |
6 content: url(data:text/plain,aaa); | 6 content: url(data:text/plain,aaa); |
7 } | 7 } |
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 function runTest() { | 13 function runTest() { |
14 document.documentElement.classList.remove("crash"); | 14 document.documentElement.classList.remove("crash"); |
15 } | 15 } |
16 window.addEventListener("load", runTest, false); | 16 window.addEventListener("load", runTest, false); |
17 </script> | 17 </script> |
18 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=96863">96863</a>: REGRES
SION(r124168): Null crash in RenderLayer::createScrollbar</p> | 18 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=96863">96863</a>: REGRES
SION(r124168): Null crash in Layer::createScrollbar</p> |
19 <p>This test PASSED if it didn't CRASH or ASSERT.</p> | 19 <p>This test PASSED if it didn't CRASH or ASSERT.</p> |
OLD | NEW |