mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
398 B
HTML
16 lines
398 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html class="reftest-wait">
|
||
|
<body>
|
||
|
<embed type="application/x-test" id="p"
|
||
|
style="position:fixed; width:200px; height:200px;"></embed>
|
||
|
<script>
|
||
|
var p = document.getElementById("p");
|
||
|
function doTest() {
|
||
|
p.style.height = "400px";
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|