mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
21 lines
370 B
HTML
21 lines
370 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
div#a { margin: 100px 0px 100px 0px; }
|
|
</style>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var a = document.getElementById("a");
|
|
a.removeChild(a.firstChild);
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<div id="a">a</div>
|
|
<div>b</div>
|
|
</body>
|
|
</html>
|