mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
15 lines
361 B
HTML
15 lines
361 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body style="height:3000px; overflow:hidden;">
|
|
<script>
|
|
function doTest() {
|
|
document.documentElement.scrollTop = 100;
|
|
document.documentElement.removeAttribute('class');
|
|
}
|
|
window.focus();
|
|
document.documentElement.focus();
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|