blob: bf86081411933b0719cea618e624f2c91d641816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function doTest() {
document.getElementById("inner").style.height = "0";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
<div style="overflow:auto; width:100px; height:100px;">
<div id="inner" style="height:200px;"></div>
</div>
</body>
</html>
|