| Index: LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html
|
| diff --git a/LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html b/LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b749bef234c7c1ce642f5b2da11c39bbc7dcb404
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + .spanner { -webkit-column-span:all; }
|
| +</style>
|
| +<body style="margin:0;">
|
| + <p>PASS if no crash or assertion failure.</p>
|
| + <div style="-webkit-column-count:4;">
|
| + <svg><foreignObject class="spanner"></foreignObject></svg><div id="a" class="spanner">a</div><span id="b">b</span><div class="spanner"></div>
|
| + </div>
|
| + <script>
|
| + if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| + onload = function() {
|
| + document.body.offsetTop;
|
| + document.getElementById('a').style.display = 'none';
|
| + document.body.offsetTop;
|
| + document.getElementById('b').style.display = 'none';
|
| + }
|
| + </script>
|
| +</body>
|
|
|