gecko-dev/layout/reftests/invalidation/540247-1-ref.xul
Emma Malysz ce8c74748f Bug 1454358, removes unneccessary implementation of ScrollBoxObject rr?enndeakin+6102 r=bz,enndeakin+6102
MozReview-Commit-ID: LBQ0RoS0ZVc

--HG--
rename : dom/webidl/ScrollBoxObject.webidl => dom/chrome-webidl/XULScrollElement.webidl
rename : layout/xul/ScrollBoxObject.cpp => dom/xul/XULScrollElement.cpp
rename : layout/xul/ScrollBoxObject.h => dom/xul/XULScrollElement.h
extra : rebase_source : 6a0de76dfdacbc29d261a4aea703a44f87ad7e12
2018-06-25 10:11:31 -07:00

30 lines
805 B
XML

<?xml version="1.0"?>
<window id="Test for bug 540247" title="Testcase" class="reftest-wait"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script><![CDATA[
document.addEventListener("MozReftestInvalidate", runtest, false);
function runtest() {
document.getElementById('b').height = '100';
var scrollbox = document.getElementById('s');
scrollbox.scrollTo(0, 1000);
document.documentElement.className = "";
}
]]>
</script>
<scrollbox id="s" height="200" style="overflow: scroll;">
<vbox>
<vbox height="150" width="200" style="background: red;" id="b"/>
<vbox height="150" width="200" style="background: green;"/>
<vbox height="150" width="200" style="background: blue;"/>
<label value="a"/>
</vbox>
</scrollbox>
</window>