gecko-dev/layout/reftests/bugs/1013054-1.html
Robert O'Callahan 372f537079 Bug 1013054. Don't propagate non-repaint change hints to the canvas frame. r=mattwoodrow
--HG--
extra : rebase_source : c5e9613baf7a444dafbb1b9677cf7b4bd5381140
2014-07-22 01:57:52 +12:00

14 lines
475 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<body style="transform:translateY(50px);">
<span style="padding:2px; background:yellow">&nbsp;&nbsp;&nbsp;&nbsp;</span>
<script>
console.log(document.body.getBoundingClientRect());
document.body.style.transform = "translateY(30px)";
function doTest() {
document.body.style.transform = "translateY(10px)";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>