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

Side by Side Diff: LayoutTests/fast/block/float/trailing-float-with-columns.html

Issue 1132103007: Remove obsolete float-management code from line layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 5 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
(Empty)
1 <!DOCTYPE html>
2 <p>crbug.com/487775: PASS if no crash or assertion failure.</p>
3 <div>
4 <div id="firstChild" style="display:inline-block; width:100px;"></div>
5 <div style="display:inline-block; width:100%; height:100px;"></div>
6 <div style="-webkit-columns:2; float:right;">
7 <div style="float:left; position:relative; width:100px; height:100px;">< /div>
8 <div style="-webkit-column-span:all;"></div>
9 <div id="contentAfterSpanner"></div>
10 </div>
11 </div>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 onload = function() {
16 document.body.offsetTop;
17 document.getElementById("contentAfterSpanner").style.display = "none";
18 document.getElementById("firstChild").style.width = "101px";
19 }
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698