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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/block/float/trailing-float-with-columns.html
diff --git a/LayoutTests/fast/block/float/trailing-float-with-columns.html b/LayoutTests/fast/block/float/trailing-float-with-columns.html
new file mode 100644
index 0000000000000000000000000000000000000000..b59a3f0f75ba7a409e5d956314d0e46f5deda363
--- /dev/null
+++ b/LayoutTests/fast/block/float/trailing-float-with-columns.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<p>crbug.com/487775: PASS if no crash or assertion failure.</p>
+<div>
+ <div id="firstChild" style="display:inline-block; width:100px;"></div>
+ <div style="display:inline-block; width:100%; height:100px;"></div>
+ <div style="-webkit-columns:2; float:right;">
+ <div style="float:left; position:relative; width:100px; height:100px;"></div>
+ <div style="-webkit-column-span:all;"></div>
+ <div id="contentAfterSpanner"></div>
+ </div>
+</div>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ onload = function() {
+ document.body.offsetTop;
+ document.getElementById("contentAfterSpanner").style.display = "none";
+ document.getElementById("firstChild").style.width = "101px";
+ }
+</script>

Powered by Google App Engine
This is Rietveld 408576698