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

Side by Side Diff: LayoutTests/fast/table/table-continuation-outline-paint-crash.html

Issue 216553010: Remove carriage returns from LayoutTests (04) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 <html> 1 <html>
2 <body onload="runTest();"> 2 <body onload="runTest();">
3 You should see a PASS with a solid outline around it. 3 You should see a PASS with a solid outline around it.
4 <script> 4 <script>
5 function runTest() 5 function runTest()
6 { 6 {
7 table = document.createElement('table'); 7 table = document.createElement('table');
8 document.body.appendChild(table); 8 document.body.appendChild(table);
9 9
10 span1 = document.createElement('span'); 10 span1 = document.createElement('span');
(...skipping 11 matching lines...) Expand all
22 22
23 document.body.offsetTop; 23 document.body.offsetTop;
24 24
25 span1.removeChild(span2); 25 span1.removeChild(span2);
26 span3 = document.createElement('span'); 26 span3 = document.createElement('span');
27 span3.insertBefore(span2, null); 27 span3.insertBefore(span2, null);
28 } 28 }
29 </script> 29 </script>
30 </body> 30 </body>
31 </html> 31 </html>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698