summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/505743-1.html
blob: df6cd0f5af4be6f3d76acf17e6abe372232e307c (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);
</script>
</body>
</html>