mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
5e332dc349
--HG-- extra : rebase_source : 1050ffe991aed624958b9cb63f142a76a34fc67d
15 lines
407 B
HTML
15 lines
407 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<div id="b" style="width:100px; height:100px; position:relative; top:50px; -moz-appearance:button"></div>
|
|
<script>
|
|
var b = document.getElementById("b");
|
|
function doTest() {
|
|
b.style.top = "60px";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|