summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/381507-1.html
blob: c087ed929d3609726c9808cefa2ec467dc733288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html class="reftest-wait">
 <body onload="HandleLoad()">
  <script>
    function HandleLoad() {
      setTimeout(function() {
	var myFrame = document.getElementById("myFrame");
	myFrame.style.height = "200px";
        document.documentElement.className = "";
      }, 0);
    }
  </script>

  <iframe id="myFrame" 
          style="height: 300px"
          src="381507-iframe.html"/>
 </body>
</html>