Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <html class="reftest-wait">
2 <body onload="HandleLoad()">
3 <script>
4 function HandleLoad() {
5 setTimeout(function() {
6 var myFrame = document.getElementById("myFrame");
7 myFrame.style.height = "200px";
8 document.documentElement.className = "";
9 }, 0);
10 }
11 </script>
13 <iframe id="myFrame"
14 style="height: 300px"
15 src="402629-3-iframe.html"/>
16 </body>
17 </html>