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

17 lines
381 B
HTML

<!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, false);
</script>
</head>
<body>
<div id="d" style="width:100px; height:100px; background:blue;">Hello</div>
</body>
</html>