summaryrefslogtreecommitdiffstats
path: root/layout/reftests/invalidation/fractional-transform-2.html
blob: 9e47164ae32f57026fad118d1e662966cb9de383 (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">
<meta charset="utf-8">
<title>Scrolling shouldn't invalidate the square.</title>

<style>
body {
  margin: 0;
  height: 5000px;
}
</style>

<body>

<svg width="768" height="1000">

  <g transform="translate(0 112.152992)">
    <rect x="100" y="650" height="50" width="50" fill="grey" class="reftest-no-paint"/>
  </g>

</svg>

<script>

document.documentElement.scrollTop = 709;

window.addEventListener("MozReftestInvalidate", function (e) {
  document.documentElement.scrollTop = 617;
  document.documentElement.removeAttribute("class");
});

</script>