Index: LayoutTests/fast/multicol/dynamic/spanner-in-content-becomes-regular-block.html |
diff --git a/LayoutTests/fast/multicol/dynamic/spanner-in-content-becomes-regular-block.html b/LayoutTests/fast/multicol/dynamic/spanner-in-content-becomes-regular-block.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..788f43e79d7eec6672275a2c484c9f03614e1493 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/spanner-in-content-becomes-regular-block.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<script> |
+ onload = function() { |
+ var elm = document.getElementById('elm'); |
+ elm.offsetTop; // trigger layout |
+ elm.style.webkitColumnSpan = 'none'; |
+ } |
+</script> |
+<p>Test changing a spanner in the middle of column content to a regular block.</p> |
+<p>You should see the word 'PASS' below, with large letter spacing:</p> |
+<div style="-webkit-columns:4; -webkit-column-gap:0; width:4em;"> |
+ P |
+ <div id="elm" style="-webkit-column-span:all; column-span:all;">A</div> |
+ S<br>S |
+</div> |