tenfourfox/layout/reftests/bugs/402629-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

18 lines
404 B
HTML

<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>