| Index: LayoutTests/fast/multicol/span/insert-spanner-child2.html
|
| diff --git a/LayoutTests/fast/multicol/span/insert-spanner-child2.html b/LayoutTests/fast/multicol/span/insert-spanner-child2.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4cf3616fe74ab03240c3f157cc24b5f7e774fa17
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/span/insert-spanner-child2.html
|
| @@ -0,0 +1,14 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + if (window.internals)
|
| + internals.settings.setRegionBasedColumnsEnabled(true);
|
| + 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:3; columns:3;">
|
| + <div style="-webkit-column-span:all; column-span:all;"><div id="elm" style="display:none; float:left;">PA</div>SS</div>
|
| +</div>
|
|
|