gecko/layout/reftests/bugs/584699-1.html
Robert O'Callahan e10bc1e1f7 Bug 584699. Invalidate ThebesLayers in abs-pos frame subtree that's moved. r=dbaron
--HG--
extra : rebase_source : 06dd1df6b08d331b38ee8a9edbf6ce07e7841c25
2010-09-06 15:04:36 +12:00

17 lines
428 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function doTest() {
var c = document.getElementById("c");
c.style.top = "20px";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</head>
<body>
<canvas id="c" style="position: absolute; top:0; opacity:0.5; border:1px solid black; width:200px; height:200px;"></canvas>
</body>
</html>