diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/invalidation/partially-scrolled-svg-group.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/invalidation/partially-scrolled-svg-group.html')
-rw-r--r-- | layout/reftests/invalidation/partially-scrolled-svg-group.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/partially-scrolled-svg-group.html b/layout/reftests/invalidation/partially-scrolled-svg-group.html new file mode 100644 index 0000000000..d7c08582af --- /dev/null +++ b/layout/reftests/invalidation/partially-scrolled-svg-group.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html lang="en" class="reftest-wait" + reftest-displayport-x="0" + reftest-displayport-y="0" + reftest-displayport-w="800" + reftest-displayport-h="1000"> +<meta charset="utf-8"> +<body> + <div> + <h4 style="height: 600px">All the lines at the bottom should show up when this is scrolled down.</h4> + <div id="ember801" class="graph-data ember-view"> + <div style="position: relative;"> + <div style="position: relative; width: 920px; height: 500px;" dir="ltr"> + <div style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;" aria-label="A chart."> + <svg width="920" height="500" style="" aria-label="A chart."> + <defs id="defs"> + <clipPath id="_ABSTRACT_RENDERER_ID_2"> + <rect x="85" y="50" width="708" height="400"></rect> + </clipPath></defs> + <rect x="0" y="0" width="920" height="500" stroke="none" stroke-width="0" fill="#ffffff"></rect> + <g></g> + <g> + <rect x="85" y="50" width="708" height="400" stroke="none" stroke-width="0" fill-opacity="0" fill="#ffffff"></rect> + <g clip-path="url(#_ABSTRACT_RENDERER_ID_2)"> + <g> + <rect y="50" width="1" height="400" stroke="none" stroke-width="0" fill="#cccccc"></rect> + <rect x="399" y="50" width="1" height="400" stroke="none" stroke-width="0" fill="#cccccc"></rect> + <rect x="85" y="449" width="708" height="1" stroke="none" stroke-width="0" fill="#cccccc"></rect> + <rect x="85" y="349" width="708" height="1" stroke="none" stroke-width="0" fill="#cccccc"></rect> + <rect x="85" y="250" width="708" height="1" stroke="none" stroke-width="0" fill="#cccccc"></rect> + <rect x="85" y="150" width="708" height="1" stroke="none" stroke-width="0" fill="#cccccc"></rect> + <rect x="85" y="50" width="708" height="1" stroke="none" stroke-width="0" fill="#cccccc"></rect> + </g> + </g> + </g> + </svg> + </div> + </div> + <div aria-hidden="true" style="position: absolute; top: 510px; left: 930px; white-space: nowrap; font-family: Arial; font-size: 14px; display: none;">0.2.42</div> + <div></div> + </div> + </div> + </div> + +<script> + +function doTest() { + document.documentElement.scrollTop = 200; + document.documentElement.removeAttribute("class"); +} + +document.addEventListener("MozReftestInvalidate", doTest); + +</script> + + </body> + </html>
\ No newline at end of file |