mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
321 B
HTML
17 lines
321 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function m()
|
||
|
{
|
||
|
document.body.offsetHeight;
|
||
|
var div = document.getElementById("div");
|
||
|
var doomed = document.getElementById("doomed");
|
||
|
div.removeChild(doomed);
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="m();">
|
||
|
<div id="div"><span>x </span><div id="doomed">y</div><span> x</span></div>
|
||
|
</body>
|
||
|
</html>
|