mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
1700296f02
--HG-- rename : layout/xul/nsIPopupBoxObject.idl => dom/webidl/PopupBoxObject.webidl rename : layout/xul/tree/nsITreeBoxObject.idl => dom/webidl/TreeBoxObject.webidl rename : layout/xul/nsBoxObject.cpp => layout/xul/BoxObject.cpp rename : layout/xul/nsBoxObject.h => layout/xul/BoxObject.h rename : layout/xul/nsListBoxObject.cpp => layout/xul/ListBoxObject.cpp rename : layout/xul/nsMenuBoxObject.cpp => layout/xul/MenuBoxObject.cpp rename : layout/xul/nsPopupBoxObject.cpp => layout/xul/PopupBoxObject.cpp
30 lines
803 B
XML
30 lines
803 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 sbo = document.getElementById('s').boxObject;
|
|
sbo.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>
|