mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0765424df3
--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>
|