summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/380004-1.html
blob: 12e14f5f9eeb29d51875a971c034dc4c57f00582 (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 = "300px";
        document.documentElement.className = "";
      }, 0);
    }
  </script>

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