4 <p>This test passes if you see a green box below.
</p>
6 <div id=
"scrollable" style=
"height: 0; overflow-y: auto; padding-bottom: 200px; background-color: green">
7 <div style=
"position: relative; height: 400px; background-color: red">
8 <div id=
"node-to-hide" style=
"position: absolute;">hello
</div>
11 <script src=
"../../resources/js-test.js"></script>
13 document
.body
.offsetLeft
;
14 document
.getElementById("node-to-hide").style
.display
= "none";
15 document
.getElementById("scrollable").scrollTop
= "400";
16 shouldBe("document.getElementById('scrollable').scrollTop", "400");
17 shouldBe("document.getElementById('scrollable').scrollHeight", "600");