Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE HTML>
<html class="reftest-wait reftest-no-wr-raster">
<body style="background-color: green">
<div style="width:100px; height:100px; background: blue;"></div>
<script>
function doTest() {
// Changing the background will trigger rasterization, which should
// cause this test to fail the reftest-no-wr-raster check
document.body.style.backgroundColor = "red";
document.documentElement.classList.remove("reftest-wait");
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>