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

19 lines
367 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<style>
div {
width: 500px;
height: 500px;
opacity: 0.5;
box-shadow: 0 0 40px #000;
}
</style>
<div id="d"></div>
<script>
function doTest() {
document.getElementById("d").style.opacity = 1;
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>