| Index: LayoutTests/fast/multicol/dynamic/insert-block-into-content.html
|
| diff --git a/LayoutTests/fast/multicol/dynamic/insert-block-into-content.html b/LayoutTests/fast/multicol/dynamic/insert-block-into-content.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3216dd08f5588c7e8f2fdf0fc3d83d3988bf7978
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/dynamic/insert-block-into-content.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + onload = function() {
|
| + var elm = document.getElementById('elm');
|
| + document.body.offsetTop; // trigger layout
|
| + elm.style.display = 'block';
|
| + }
|
| +</script>
|
| +<p>Insert a block in the middle of column content.</p>
|
| +<p>There should be two lines below with the word "PASS", with large letter spacing.</p>
|
| +<div style="-webkit-columns:4; -webkit-column-gap:0; width:4em;">
|
| + P<br>P<br>A<br>
|
| + <div id="elm" style="display:none;">A</div>
|
| + S<br>S<br>S<br>S
|
| +</div>
|
|
|