| Index: LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html
|
| diff --git a/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html b/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e74fb8e4b2dac3eabf6a251f89a2afc52882de56
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html
|
| @@ -0,0 +1,12 @@
|
| +<!DOCTYPE html>
|
| +<p>There should be a blue <em>square</em> below.</p>
|
| +<div style="-webkit-columns:2; -webkit-column-gap:0; width:100px;">
|
| + <div id="container">
|
| + <div style="-webkit-column-span:all;"></div>
|
| + <div style="position:absolute; top:0; left:0; width:50px; height:200px; background:blue;"></div>
|
| + </div>
|
| +</div>
|
| +<script>
|
| + document.body.offsetTop;
|
| + document.getElementById("container").style.position = "relative";
|
| +</script>
|
|
|