summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/818276-1.html
blob: 1cb045a29c58b007ec9379161675bed17ce9ded0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<iframe id="f" src="data:text/html,<div style='height:1000px; background:yellow'>" style="overflow:hidden"></iframe>
<script>
function doTest() {
  var f = document.getElementById("f");
  f.style.overflow = "visible";
  document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>