summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/402629-1.html
blob: 35e72226568b90ad4101a0e353778f755c792b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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="402629-1-iframe.html"/>
 </body>
</html>