Mypal/layout/reftests/backgrounds/root-element-display-none-1.html
2019-03-11 13:26:37 +03:00

15 lines
396 B
HTML

<!DOCTYPE html>
<html id="theroot" style="background-color: red" class="reftest-wait">
<head>
<script>
function dodisplaynone() {
document.getElementById('theroot').style.display = 'none';
document.documentElement.className = "";
}
document.addEventListener("MozReftestInvalidate", dodisplaynone, false);
</script>
</head>
<body>
</body>
</html>