mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
403 B
HTML
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 = "200px";
|
|
document.documentElement.className = "";
|
|
}, 0);
|
|
}
|
|
</script>
|
|
|
|
<iframe id="myFrame"
|
|
style="height: 300px"
|
|
src="381507-iframe.html"/>
|
|
</body>
|
|
</html>
|
|
|