mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
444 B
HTML
27 lines
444 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function init()
|
|
{
|
|
document.addEventListener("DOMNodeRemoved", meep, false);
|
|
document.body.appendChild(document.getElementById("b"));
|
|
|
|
function meep()
|
|
{
|
|
document.removeEventListener("DOMNodeRemoved", meep, false);
|
|
document.body.removeChild(document.getElementById("c"));
|
|
}
|
|
}
|
|
|
|
window.addEventListener("load", init, false);
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body><div id="b"></div><div id="c"></div></body>
|
|
</html> |