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

Side by Side Diff: LayoutTests/fast/inline/crash-new-continuation-with-outline.html

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 <head> 3 <head>
4 <style> 4 <style>
5 object:after { 5 object:after {
6 content: "ipsum"; 6 content: "ipsum";
7 } 7 }
8 object { 8 object {
9 opacity: 0.6039658321533352; 9 opacity: 0.6039658321533352;
10 visibility: hidden; 10 visibility: hidden;
11 outline-style: dotted; 11 outline-style: dotted;
12 } 12 }
13 </style> 13 </style>
14 </head> 14 </head>
15 <body> 15 <body>
16 <p>Test case for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=84774">847 74</a>: NULL-deref in RenderBox::clippedOverflowRectForRepaint</p> 16 <p>Test case for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=84774">847 74</a>: NULL-deref in LayoutBox::clippedOverflowRectForRepaint</p>
17 <script> 17 <script>
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.dumpAsText(); 19 testRunner.dumpAsText();
20 20
21 var objectElement = document.createElement("object"); 21 var objectElement = document.createElement("object");
22 newContent = document.createTextNode("Lorem"); 22 newContent = document.createTextNode("Lorem");
23 objectElement.appendChild(newContent); 23 objectElement.appendChild(newContent);
24 document.body.appendChild(objectElement); 24 document.body.appendChild(objectElement);
25 25
26 var olElement = document.createElement("ol"); 26 var olElement = document.createElement("ol");
27 objectElement.appendChild(olElement); 27 objectElement.appendChild(olElement);
28 28
29 document.body.appendChild(document.createTextNode("PASSED, this test did not crashed.")); 29 document.body.appendChild(document.createTextNode("PASSED, this test did not crashed."));
30 </script> 30 </script>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698