tenfourfox/layout/reftests/bugs/564991-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
343 B
HTML

<!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, false);
</script>
</body>
</html>