Index: LayoutTests/fast/multicol/span/insert-spanner-child1.html |
diff --git a/LayoutTests/fast/multicol/span/insert-spanner-child1.html b/LayoutTests/fast/multicol/span/insert-spanner-child1.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..00662e0aafea6fe6f83dab34f928021ad2bf364a |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/span/insert-spanner-child1.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<script> |
+ if (window.internals) |
+ internals.settings.setRegionBasedColumnsEnabled(true); |
+ onload = function() { |
+ var elm = document.getElementById('elm'); |
+ document.body.offsetTop; // trigger layout |
+ elm.style.display = 'block'; |
+ } |
+</script> |
+<p>You should see the word "PASS" below.</p> |
+<div style="-webkit-columns:5; columns:5; column-gap:0; -webkit-column-gap:0; orphans:1; widows:1;"> |
+ <div style="-webkit-column-span:all; column-span:all;"><div id="elm" style="display:none;">PASS</div></div> |
+</div> |