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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats-2.html

Issue 1729663002: Clear descendant floats when moving children of a multicol container to a flowthread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>crbug.com/588178: PASS if no crash or assertion failure.</p>
3 <div id="removeMe" style="float:left; width:100px; height:100px;"></div>
4 <div id="container">
5 <!-- Sneak past removeFloatingObjectsFromDescendants() stuff in
6 LayoutBoxModelObject::moveChildTo() during LayoutMultiColumnFlowThr ead::populate(),
7 by having a non-LayoutBlockFlow as the first child: -->
8 <div style="display:table;"></div>
9 <div>
10 <div id="block2">
11 <textarea id="block2" style="display:block;"></textarea>
12 </div>
13 </div>
14 </div>
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 document.body.offsetTop;
19 document.getElementById("container").style.columns = "2";
20 getComputedStyle(document.body);
21 document.getElementById("removeMe").style.display = "none";
22 document.getElementById("block2").style.webkitWritingMode = "vertical-lr";
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698