mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
18 lines
375 B
HTML
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>
|