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

Side by Side Diff: LayoutTests/fast/dynamic/crash-paint-no-documentElement-renderer.html-disabled

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (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> 2 <html>
3 <body onload="go()"> 3 <body onload="go()">
4 <p>Bug 64284: Crash in RenderBox::paintBoxDecorations when documentElement has n o renderer</p> 4 <p>Bug 64284: Crash in LayoutBox::paintBoxDecorations when documentElement has n o renderer</p>
5 <p>For this test to PASS, it should not ASSERT or CRASH.</p> 5 <p>For this test to PASS, it should not ASSERT or CRASH.</p>
6 <script> 6 <script>
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 9
10 function go() { 10 function go() {
11 document.open(); 11 document.open();
12 var oUElement = document.createElement("U"); 12 var oUElement = document.createElement("U");
13 oUElement.hidden=true; 13 oUElement.hidden=true;
14 oUElement.innerHTML="<style>*{-webkit-border-before-style:groove}"; 14 oUElement.innerHTML="<style>*{-webkit-border-before-style:groove}";
15 document.appendChild(oUElement); 15 document.appendChild(oUElement);
16 document.close(); 16 document.close();
17 } 17 }
18 </script> 18 </script>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/empty-webkit-mask-crash-expected.txt ('k') | LayoutTests/fast/events/autoscroll-upwards-propagation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698