mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
405 B
HTML
18 lines
405 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById("inner").style.height = "0";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div style="overflow:auto; width:100px; height:100px;">
|
|
<div id="inner" style="height:200px;"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|