Index: LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html |
diff --git a/LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a3f406e9ea06f3bf54dd6befc17734472e2a0ae6 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<p>Insert a spanner after another spanner and before existing multicol content. The other spanner has a multicol container with yet another spanner inside.</p> |
+<p>PASS if no crash or assertion failure.</p> |
+<div style="-webkit-column-count:3;"> |
+ <div style="-webkit-column-span:all;"> |
+ <div style="-webkit-column-count:2;"> |
+ <div style="-webkit-column-span:all;"></div> |
+ |
+ </div> |
+ </div> |
+ <div id="willBecomeSpanner"></div> |
+ |
+</div> |
+<script> |
+ if (window.testRunner) |
+ testRunner.dumpAsText(); |
+ document.body.offsetTop; |
+ document.getElementById("willBecomeSpanner").style.webkitColumnSpan = "all"; |
+</script> |