blob: 09bfe9716a7c5cbf2b361c048fc479cf131d1fe8 (
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);
</script>
</body>
</html>
|