Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / subtree-layout.html
blob396be0926ee72b1740fae86b70d8d467eafe9276
1 <!DOCTYPE html>
2 <style>
3 /* LayoutObject::objectIsRelayoutBoundary() should be true */
4 #relayoutBoundary {
5 overflow: hidden;
6 width: 100px;
7 height: 100px;
9 </style>
10 <div id="relayoutBoundary">
11 <div id="layouter"></div>
12 </div>
13 <script>
14 document.body.offsetTop;
15 document.getElementById("layouter").style.position = "relative";
16 document.body.offsetTop;
17 </script>