blob: f7124e86983d7bf0bf9d0a90b96b4348b6b4a178 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html class="reftest-wait">
<body>
<iframe src="bug559996-ref-iframe.html#down" style="height: 200px; width: 200px"></iframe>
<script>
function endTest() {
document.documentElement.removeAttribute("class");
}
function waitForInactivity() {
setTimeout(endTest, 1000);
}
document.addEventListener("MozReftestInvalidate", waitForInactivity);
</script>
</body>
</html>
|