diff options
Diffstat (limited to 'layout/reftests/bugs/1013054-1.html')
-rw-r--r-- | layout/reftests/bugs/1013054-1.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1013054-1.html b/layout/reftests/bugs/1013054-1.html new file mode 100644 index 0000000000..1d76ef0ab0 --- /dev/null +++ b/layout/reftests/bugs/1013054-1.html @@ -0,0 +1,13 @@ +<!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> |