mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
96958ecaea
--HG-- extra : rebase_source : 8709cdba8ea6f9776b61ff935c1c850573caff3a
26 lines
440 B
HTML
26 lines
440 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
#a {
|
|
display: block;
|
|
opacity:1;
|
|
overflow:hidden;
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: lime;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span id="a"></span>
|
|
<script>
|
|
function doe() {
|
|
document.getElementById('a').style.opacity = '0';
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
document.addEventListener("MozReftestInvalidate", doe, false);
|
|
</script>
|
|
</body>
|
|
</html>
|