Index: third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html |
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html b/third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..533c403541377c6b2a0ebbc57426c252f33ab0d4 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<p>There should be a blue square below, and no red.</p> |
+<div style="-webkit-columns:2; width:100px; -webkit-column-gap:0; background:red;"> |
+ <div id="block" style="height:20px; background:blue;"></div> |
+ <div> |
+ <div style="position:relative;"> |
+ <div style="-webkit-column-span:all;"></div> |
+ <div id="abspos" style="position:absolute;"></div> |
+ <div></div> |
+ </div> |
+ </div> |
+</div> |
+<script> |
+ document.body.offsetTop; |
+ document.getElementById("block").style.height = "200px"; |
+ document.getElementById("abspos").style.display = "none"; |
+</script> |