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

Side by Side Diff: LayoutTests/fast/table/table-split-positioned-object-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 WebKit Bug 89599 - Crash in RenderBlock::layoutPositionedObjects.<br /> 3 WebKit Bug 89599 - Crash in RenderBlock::layoutPositionedObjects.<br />
4 Test passes if it does not crash. 4 Test passes if it does not crash.
5 <style> 5 <style>
6 table { position: relative; } 6 table { position: relative; }
7 .span:last-child { position: relative; } 7 .span:last-child { position: relative; }
8 </style> 8 </style>
9 <script> 9 <script>
10 if (window.testRunner) 10 if (window.testRunner)
(...skipping 15 matching lines...) Expand all
26 table.appendChild(span2); 26 table.appendChild(span2);
27 table.appendChild(span3); 27 table.appendChild(span3);
28 28
29 document.documentElement.offsetTop; 29 document.documentElement.offsetTop;
30 span2.style.display = 'table-header-group'; 30 span2.style.display = 'table-header-group';
31 span3.style.display = 'block' 31 span3.style.display = 'block'
32 } 32 }
33 window.onload = crash; 33 window.onload = crash;
34 </script> 34 </script>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698