mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
17 lines
406 B
HTML
17 lines
406 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
window.addEventListener("MozReftestInvalidate",
|
|
function() {
|
|
var b = document.body;
|
|
b.style.background = "green";
|
|
b.style.display = "";
|
|
document.documentElement.className = "";
|
|
}, false);
|
|
</script>
|
|
</head>
|
|
<body style="background: red; display: none">
|
|
</body>
|
|
</html>
|