| Index: LayoutTests/fast/multicol/span/spanner-becomes-regular-block.html
|
| diff --git a/LayoutTests/fast/multicol/span/spanner-becomes-regular-block.html b/LayoutTests/fast/multicol/span/spanner-becomes-regular-block.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a3c422ae09d24759b8c97f2cf62740121adb818b
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/span/spanner-becomes-regular-block.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + if (window.internals)
|
| + internals.settings.setRegionBasedColumnsEnabled(true);
|
| + onload = function() {
|
| + var elm = document.getElementById('elm');
|
| + document.body.offsetTop; // trigger layout
|
| + elm.style.webkitColumnSpan = '1';
|
| + elm.style.columnSpan = '1';
|
| + }
|
| +</script>
|
| +<p>You should see the word "PASS" below.</p>
|
| +<div style="float:left;">
|
| + <div style="-webkit-columns:2; columns:2; -webkit-column-gap:0; column-gap:0; orphans:1; widows:1; background:blue;">
|
| + <div style="margin-top:0.5em;">
|
| + <div id="elm" style="-webkit-column-span:all; column-span:all; margin-top:0.2em; background:yellow;">
|
| + PA<br>
|
| + <div style="height:0.5em; background:blue;"></div>
|
| + SS
|
| + </div>
|
| + </div>
|
| + </div>
|
| +</div>
|
|
|