2014-05-13 15:37:55 +04:00
|
|
|
<!DOCTYPE html>
|
2016-03-12 01:45:27 +03:00
|
|
|
<html lang="en" class="reftest-wait"
|
|
|
|
reftest-displayport-x="0"
|
|
|
|
reftest-displayport-y="0"
|
|
|
|
reftest-displayport-w="800"
|
|
|
|
reftest-displayport-h="1000">
|
2014-05-13 15:37:55 +04:00
|
|
|
<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];
|
2015-04-29 18:32:05 +03:00
|
|
|
if (location.search.includes("reverse")) {
|
2014-05-13 15:37:55 +04:00
|
|
|
scrollPositions.reverse();
|
|
|
|
}
|
|
|
|
document.documentElement.scrollTop = scrollPositions[0];
|
|
|
|
|
|
|
|
function doTest() {
|
|
|
|
document.documentElement.scrollTop = scrollPositions[1];
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
2017-01-17 13:50:25 +03:00
|
|
|
document.addEventListener("MozReftestInvalidate", doTest);
|
2014-05-13 15:37:55 +04:00
|
|
|
|
|
|
|
</script>
|