diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/invalidation/540247-1.xhtml | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/invalidation/540247-1.xhtml')
-rw-r--r-- | layout/reftests/invalidation/540247-1.xhtml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/540247-1.xhtml b/layout/reftests/invalidation/540247-1.xhtml new file mode 100644 index 0000000000..0e3cdb0f45 --- /dev/null +++ b/layout/reftests/invalidation/540247-1.xhtml @@ -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 scrollbox = document.getElementById('s'); + scrollbox.scrollTo(0, 1000); +} + +function finish() { + document.getElementById('b').style.minHeight = '100px'; + 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> |