mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
17 lines
378 B
HTML
17 lines
378 B
HTML
<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, false);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|