blob: 5c0f468dfd81f7665eb225256ad21e63fe3f524c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!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);
</script>
|