| Index: LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html
|
| diff --git a/LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html b/LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e125d51a884d16aa718eb0d447dbf2fb59a4b2a5
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html
|
| @@ -0,0 +1,14 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.c5:first-child { position: absolute; }
|
| +</style>
|
| +<div id="container">
|
| + <span id="dummy"></span>
|
| + <div class="c5" style="-webkit-column-count:3;">PASS if no crash or assertion failure.</div>
|
| +</div>
|
| +<script>
|
| + if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| + document.body.offsetTop;
|
| + document.getElementById("container").removeChild(document.getElementById("dummy"));
|
| +</script>
|
|
|