Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / setting-layout-on-posobjs-while-laying-them-out.html
blob8522c0c6f015ec0abe8ae3234fd82d4c22d5356d
1 <!DOCTYPE html>
2 <style>
3 div {
4 position: fixed
6 </style>
7 crbug.com/477940: Don't set positioned objects for layout while laying out positioned objects. This test should not ASSERT.
8 <div>
9 <div>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 thead = document.createElement("thead");
14 document.body.appendChild(thead);
15 document.body.offsetTop;
16 document.body.removeChild(thead);
17 </script>