blob: 2e1288dacdb7190e69ac9c6d3cccf568bb79dd12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function doTest() {
var d = document.getElementById("d");
d.style.opacity = 0.5;
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
<div id="d" style="width:100px; height:100px; background:blue;">Hello</div>
</body>
</html>
|