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

Side by Side Diff: LayoutTests/scrollbars/scrollbar-content-crash.html

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698