mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
398 B
HTML
23 lines
398 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function foo()
|
||
|
{
|
||
|
var div = document.getElementById("div");
|
||
|
div.parentNode.removeChild(div);
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="setTimeout(foo, 0);">
|
||
|
|
||
|
<div id="div" style="display: inline;"><p>x</p></div>
|
||
|
|
||
|
<iframe src='data:text/html,<html><body><input value="q">'></iframe>
|
||
|
|
||
|
</body>
|
||
|
</html>
|