mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
468 B
HTML
19 lines
468 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
function reframe(node) {
|
||
|
node.style.display = "none";
|
||
|
document.body.offsetWidth;
|
||
|
node.style.display = "block";
|
||
|
document.documentElement.className='';
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<iframe onload="reframe(this)" src="642800-iframe.html" id="iframe" style="width: 500px; height: 200px"></iframe>
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
|