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

Unified Diff: LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html

Issue 1229983004: May need to insert or remove column sets when out-of-flow objects get their containing block change… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: code review 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/multicol/dynamic/static-becomes-relpos-has-abspos.html
diff --git a/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html b/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html
new file mode 100644
index 0000000000000000000000000000000000000000..e74fb8e4b2dac3eabf6a251f89a2afc52882de56
--- /dev/null
+++ b/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<p>There should be a blue <em>square</em> below.</p>
+<div style="-webkit-columns:2; -webkit-column-gap:0; width:100px;">
+ <div id="container">
+ <div style="-webkit-column-span:all;"></div>
+ <div style="position:absolute; top:0; left:0; width:50px; height:200px; background:blue;"></div>
+ </div>
+</div>
+<script>
+ document.body.offsetTop;
+ document.getElementById("container").style.position = "relative";
+</script>

Powered by Google App Engine
This is Rietveld 408576698