diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/invalidation/540247-1.xul | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/invalidation/540247-1.xul')
-rw-r--r-- | layout/reftests/invalidation/540247-1.xul | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/540247-1.xul b/layout/reftests/invalidation/540247-1.xul new file mode 100644 index 000000000..8e2fe5d25 --- /dev/null +++ b/layout/reftests/invalidation/540247-1.xul @@ -0,0 +1,33 @@ +<?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() { + // Make sure that the effects of the scroll are painted to the screen before + // shrinking the size of the scrolled frame. + window.addEventListener("MozAfterPaint", finish, false); + var sbo = document.getElementById('s').boxObject; + sbo.scrollTo(0, 1000); +} + +function finish() { + document.getElementById('b').height = '100'; + 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> |