flutter_flutter/engine/web/tests/data/subtree-layout.html
2014-10-23 11:17:19 -07:00

18 lines
375 B
HTML

<!DOCTYPE html>
<style>
/* RenderObject::objectIsRelayoutBoundary() should be true */
#relayoutBoundary {
overflow: hidden;
width: 100px;
height: 100px;
}
</style>
<div id="relayoutBoundary">
<div id="layouter"></div>
</div>
<script>
document.body.offsetTop;
document.getElementById("layouter").style.position = "relative";
document.body.offsetTop;
</script>