Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: snapshot
- Manifest: layout/reftests/reftest-sanity/reftest.list
<!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>