summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scrolling/layer-change-1.html
blob: 7cd62e68e0e68be3e2527743b36b2b2c6594e117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<body onload="start()">
<iframe id="i" style="margin-top:100px; width:100%; height:600px;" src="layer-change-1-frame.html"></iframe>
<script>
var subw = document.getElementById("i").contentWindow;
function doTest() {
  subw.scrollTo(0,0);
  document.documentElement.removeAttribute("class");
}
function start() {
  subw.scrollTo(0,2000);
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</body>
</html>