blob: d09190e1dee5bf597d9f31904a8264068ee8cae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!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>
|