diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/bugs/1050493-1.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/bugs/1050493-1.html')
-rw-r--r-- | layout/reftests/bugs/1050493-1.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1050493-1.html b/layout/reftests/bugs/1050493-1.html new file mode 100644 index 000000000..321cf0d6c --- /dev/null +++ b/layout/reftests/bugs/1050493-1.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<meta charset="utf-8"> +<title>Test for bug 1050493</title> + +<style> +body { + position: relative; +} +#box { + width: 50px; + height: 50px; + background-color: red; + position: absolute; +} +</style> + +<div style="left: 0; top: 0;" id="box"></div> + +<script> +var positions = [ + { x: 4.6260797642782014, y: 0.46260797642782014 }, + { x: 5.0304173163526205, y: 0.4878118314685598 }, + { x: 5.0304173163526205, y: 0.5041006554218519 }, + { x: 5.556750627747686, y: 0.5041006554218519 }]; +var s = document.getElementById('box').style, + i = 0; +function f() { + if (i < positions.length) { + s.left = positions[i].x + "px"; + s.top = positions[i].y + "px"; + i++; + requestAnimationFrame(f); + } else { + document.documentElement.className = ""; + } +} +window.addEventListener("MozReftestInvalidate", function () { + f(); +}); +</script> |