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

Unified Diff: third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats.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, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats-2.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats.html
diff --git a/third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats.html b/third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats.html
new file mode 100644
index 0000000000000000000000000000000000000000..500a6ee356b0f2cd8a65118f5c6afd3e30779548
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<p>crbug.com/588178: PASS if no crash or assertion failure.</p>
+<div id="container">
+ <div></div>
+ <div id="block2">
+ <div id="removeMe" style="float:left; width:300px; height:300px;"></div>
+ <textarea style="display:block;"></textarea>
+ </div>
+</div>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+document.body.offsetTop;
+document.getElementById("container").style.columns = "2";
+document.getElementById("block2").style.webkitWritingMode = "vertical-lr";
+document.getElementById("removeMe").style.display = "none";
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/block/multicol-moves-children-with-nested-floats-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698