29 lines
854 B
HTML
29 lines
854 B
HTML
<?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').style.minHeight = '100px';
|
|
|
|
var scrollbox = document.getElementById('s');
|
|
scrollbox.scrollTo(0, 1000);
|
|
|
|
document.documentElement.className = "";
|
|
}
|
|
]]>
|
|
</script>
|
|
|
|
<scrollbox id="s" style="height: 200px; overflow: scroll;">
|
|
<vbox>
|
|
<vbox style="min-height: 150px; min-width: 200px; background: red;" id="b"/>
|
|
<vbox style="min-height: 150px; min-width: 200px; background: green;"/>
|
|
<vbox style="min-height: 150px; min-width: 200px; background: blue;"/>
|
|
<label value="a"/>
|
|
</vbox>
|
|
</scrollbox>
|
|
|
|
</window>
|