| Index: LayoutTests/fast/block/positioning/setting-layout-on-posobjs-while-laying-them-out.html
|
| diff --git a/LayoutTests/fast/block/positioning/setting-layout-on-posobjs-while-laying-them-out.html b/LayoutTests/fast/block/positioning/setting-layout-on-posobjs-while-laying-them-out.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8522c0c6f015ec0abe8ae3234fd82d4c22d5356d
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/block/positioning/setting-layout-on-posobjs-while-laying-them-out.html
|
| @@ -0,0 +1,17 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +div {
|
| + position: fixed
|
| +}
|
| +</style>
|
| +crbug.com/477940: Don't set positioned objects for layout while laying out positioned objects. This test should not ASSERT.
|
| +<div>
|
| + <div>
|
| +<script>
|
| + if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| + thead = document.createElement("thead");
|
| + document.body.appendChild(thead);
|
| + document.body.offsetTop;
|
| + document.body.removeChild(thead);
|
| +</script>
|
|
|