mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
449 B
HTML
18 lines
449 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<body>
|
||
|
<style>
|
||
|
#a { border: 1px solid black; max-width: 100px; height: 100px; }
|
||
|
</style>
|
||
|
<script>
|
||
|
document.addEventListener("MozReftestInvalidate", function() {
|
||
|
var a = document.querySelector("#a");
|
||
|
a.style.maxWidth = "200px";
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}, false);
|
||
|
</script>
|
||
|
<div id="a">
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|