mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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>
|