mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
79306e31ef
--HG-- extra : rebase_source : b9e738ebd64cbcc871a7d1a7178e1eccf64e66f1
16 lines
379 B
HTML
16 lines
379 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<div id="d" style="background:blue; -moz-border-radius:50px; width:100px; height:200px;">
|
|
</div>
|
|
<script>
|
|
function doTest() {
|
|
var d = document.getElementById("d");
|
|
d.style.width = "200px";
|
|
document.documentElement.className = "";
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|