| Index: LayoutTests/fast/multicol/dynamic/insert-block-into-spanner.html
|
| diff --git a/LayoutTests/fast/multicol/dynamic/insert-block-into-spanner.html b/LayoutTests/fast/multicol/dynamic/insert-block-into-spanner.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bfe365054e00f1aa386f0e7bf2918d7ef5346ba7
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/dynamic/insert-block-into-spanner.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + onload = function() {
|
| + var elm = document.getElementById('elm');
|
| + document.body.offsetTop; // trigger layout
|
| + elm.style.display = 'block';
|
| + }
|
| +</script>
|
| +<p>Test insertion of a block inside a spanner.</p>
|
| +<p>You should see the word "PASS" below.</p>
|
| +<div style="-webkit-columns:5; -webkit-column-gap:0;">
|
| + <div style="-webkit-column-span:all;"><div id="elm" style="display:none;">PASS</div></div>
|
| +</div>
|
|
|