summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1013054-1.html
blob: 1d76ef0ab091595c463d2ae2d9a13a4d0410bb57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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>