Mypal/layout/reftests/bugs/1003425-2.html
2019-03-11 13:26:37 +03:00

19 lines
364 B
HTML

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