mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
470 B
HTML
17 lines
470 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.getElementById("frameset").removeChild(document.getElementById("frame"));
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<frameset id="frameset" onload="setTimeout(boom, 100)">
|
|
<frame id="frame" src="data:text/html,<body onUnload="location = 'http://www.mozilla.org/'">This frame's onunload tries to load another page.">
|
|
</frameset>
|
|
|
|
</html>
|