123456789101112131415161718192021222324252627282930313233 |
- <!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">
- <title>Scrolling shouldn't invalidate the rect</title>
- <body>
- <svg width="824" height="1375" viewBox="0 0 660 1100">
- <rect x="100" y="600" width="120" height="120" fill="#EEE"
- transform="matrix(0,0.969665,-2.0321494,0,1828.58132,65.718239)"
- class="reftest-no-paint"/>
- </svg>
- <script>
- var scrollPositions = [81, 82];
- if (location.search.includes("reverse")) {
- scrollPositions.reverse();
- }
- document.documentElement.scrollTop = scrollPositions[0];
- function doTest() {
- document.documentElement.scrollTop = scrollPositions[1];
- document.documentElement.removeAttribute("class");
- }
- document.addEventListener("MozReftestInvalidate", doTest, false);
- </script>
|