Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html style="display: table" class="reftest-wait">
<head>
<script>
window.addEventListener("MozReftestInvalidate",
function() {
var b = document.createElement("body");
b.style.background = "green";
document.documentElement.appendChild(b);
document.documentElement.className = "";
});
</script>
</head>
<body style="background: red">
<script>
document.documentElement.removeChild(document.body);
</script>
</body>
</html>