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

Side by Side Diff: LayoutTests/fast/writing-mode/overhanging-float-legend-crash.html

Issue 216553010: Remove carriage returns from LayoutTests (04) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 <script> 2 <script>
3 if (window.testRunner) 3 if (window.testRunner)
4 { 4 {
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 } 6 }
7 7
8 window.onload = crash; 8 window.onload = crash;
9 9
10 function crash() 10 function crash()
11 { 11 {
12 block1.style.position = 'absolute'; 12 block1.style.position = 'absolute';
13 float1.style.display = 'none'; 13 float1.style.display = 'none';
14 document.body.offsetTop; 14 document.body.offsetTop;
15 15
16 document.getElementById("result").innerHTML = "PASS"; 16 document.getElementById("result").innerHTML = "PASS";
17 } 17 }
18 </script> 18 </script>
19 <div id="result"></div> 19 <div id="result"></div>
20 <div id="block1"> 20 <div id="block1">
21 <span id="float1" style="float:left; margin-bottom:10000px;"></span> 21 <span id="float1" style="float:left; margin-bottom:10000px;"></span>
22 </div> 22 </div>
23 <legend> 23 <legend>
24 <fieldset></fieldset> 24 <fieldset></fieldset>
25 <junk> 25 <junk>
26 </legend> 26 </legend>
27 </html> 27 </html>
28 28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698