blob: d0b27d0a617514b87f1be39f0eda520bd611a7b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<div id="d" style="opacity:0.9">HELLO</div>
<script>
function finishTest() {
var d = document.getElementById("d");
d.style.opacity = 0.1;
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", finishTest);
</script>
</body>
</html>
|