mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|