| Index: LayoutTests/fast/multicol/dynamic/insert-spanner-after-inner-multicol-crash.html
|
| diff --git a/LayoutTests/fast/multicol/dynamic/insert-spanner-after-inner-multicol-crash.html b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-inner-multicol-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..89edc371e3acf19861371591db688213bc4adc20
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-inner-multicol-crash.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE html>
|
| +<p>Insert a spanner right after an inner multicol container and before column content, splitting an existing column row.</p>
|
| +<p>PASS if no crash or assertion failure.</p>
|
| +<div style="-webkit-columns:3;">
|
| + <div style="-webkit-columns:3;">
|
| +
|
| + </div>
|
| + <div id="elm" style="display:none; -webkit-column-span:all;"></div>
|
| +
|
| + <div style="-webkit-column-span:all;"></div>
|
| +</div>
|
| +<script>
|
| + if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| + onload = function() {
|
| + document.body.offsetTop;
|
| + document.getElementById("elm").style.display = "block";
|
| + }
|
| +</script>
|
|
|