summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/539226-1.html
blob: 41dc0ef7b2daf07d7c55e0def4b7874336c254dd (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, false);
</script>
</head>
<body>
<div style="overflow:auto; width:100px; height:100px;">
  <div id="inner" style="height:200px;"></div>
</div>
</body>
</html>