mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 12:53:07 +09:00
13 lines
475 B
HTML
13 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>
|