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