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

Side by Side Diff: LayoutTests/fast/block/float/float-on-clean-line-subsequently-dirtied.html

Issue 1355003002: Floats on clean lines that are dirtied during layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/fast/block/float/float-on-clean-line-subsequently-dirtied-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!-- This test happens in quirks mode -->
2 <style>
3 * { float: left; padding-left: 33554430;}
4 </style>
5 <body>
6 <div> crbug.com/532712 : A float on a clean line that is dirtied again during la yout should not cause an assert.</div>
7 </body>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 var docElement = document.documentElement;
12 function test() {
13 firstText = document.createTextNode("T");
14 docElement.appendChild(firstText);
15 firstdiv = document.createElement("div");
16 firstdiv.setAttribute("id", "first");
17 firstdiv.setAttribute("data-expected-height", "0");
18 docElement.appendChild(firstdiv);
19 docElement.appendChild(document.createTextNode("E"));
20 docElement.appendChild(document.createElement("div"));
21 docElement.appendChild(document.createTextNode("XT"));
22 setTimeout("boom()");
23 }
24 function boom() {
25 docElement.removeChild(firstText);
26 }
27 window.onload = test;
28 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/block/float/float-on-clean-line-subsequently-dirtied-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698