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

19 lines
403 B
HTML

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