tenfourfox/layout/reftests/invalidation/zero-opacity-text.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
383 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div style="opacity:0">
<div id="d" class="reftest-no-paint" style="height:50px;">abc</div>
</div>
<script type="application/javascript">
function doTest() {
d.textContent = "def";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</body>
</html>