Index: LayoutTests/fast/multicol/dynamic/remove-content-before-inner-multicol-with-spanner-crash.html |
diff --git a/LayoutTests/fast/multicol/dynamic/remove-content-before-inner-multicol-with-spanner-crash.html b/LayoutTests/fast/multicol/dynamic/remove-content-before-inner-multicol-with-spanner-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..af546eb69e6c22040a31ccd5c08eb1fce4de7b9d |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/remove-content-before-inner-multicol-with-spanner-crash.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<p>Remove the only piece of column content that comes after a spanner that establishes an inner multicol container and has a spanner inside as well.</p> |
+<p>PASS if no crash or assertion failure.</p> |
+<div style="-webkit-columns:3;"> |
+ <div style="-webkit-column-span:all; -webkit-columns:3;"> |
+ <div style="-webkit-column-span:all;"></div> |
+ </div> |
+ <div id="elm"></div> |
+</div> |
+<script> |
+ if (window.testRunner) |
+ testRunner.dumpAsText(); |
+ document.body.offsetTop; |
+ document.getElementById("elm").style.display = "none"; |
+</script> |