mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
18 lines
402 B
HTML
18 lines
402 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="380227-iframe.html"/>
|
|
</body>
|
|
</html>
|