mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
426 B
HTML
25 lines
426 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function rM(n)
|
||
|
{
|
||
|
n.parentNode.removeChild(n);
|
||
|
}
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
rM(document.getElementById("f1"));
|
||
|
rM(document.getElementById("f2"));
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<frameset rows="170,*" onload="setTimeout(boom, 30);">
|
||
|
<frame src="data:text/html,frame1" id="f1">
|
||
|
<frame src="data:text/html,frame2" id="f2">
|
||
|
</frameset>
|
||
|
|
||
|
</html>
|