mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
313 B
HTML
17 lines
313 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var n = document.getElementById("editMe");
|
|
n.removeChild(n.firstChild);
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<span id="editMe" style="margin-bottom: 1px;">a</span>
|
|
<div>b</div>
|
|
</body>
|
|
</html>
|