summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/402629-2.html
blob: d8d1fd11b9de2aa3813c32e7815cf85f16eba5cf (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-2-iframe.html"/>
 </body>
</html>