mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
372f537079
--HG-- extra : rebase_source : c5e9613baf7a444dafbb1b9677cf7b4bd5381140
14 lines
475 B
HTML
14 lines
475 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body style="transform:translateY(50px);">
|
|
<span style="padding:2px; background:yellow"> </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>
|