mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
37 lines
559 B
HTML
37 lines
559 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
var de;
|
|
|
|
function boom()
|
|
{
|
|
de = document.documentElement;
|
|
document.addEventListener("DOMNodeRemoved", f, false);
|
|
|
|
function f()
|
|
{
|
|
document.removeEventListener("DOMNodeRemoved", f, false);
|
|
de.appendChild(document.createElement("body"));
|
|
}
|
|
|
|
document.removeChild(de);
|
|
|
|
setTimeout(cont, 30);
|
|
}
|
|
|
|
function cont()
|
|
{
|
|
document.appendChild(de);
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="setTimeout(boom, 30);">
|
|
|
|
</body>
|
|
</html>
|