blob: 5e0908e0827e5f0c69b267721f1777c362179076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html class="reftest-wait">
<svg width="400" height="300">
<text id="text" opacity="1" x="0" y="150" fill="black">
This text should disappear
</text>
<rect id="rect" width="100" height="100" fill="green" x="0" y="0"/>
</svg>
<script>
function doTest() {
var elt = document.getElementById("text");
elt.setAttribute("opacity", 0);
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest, false);
setTimeout(doTest, 5000);
</script>
</html>
|