Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<html class="reftest-wait">
<head>
<script>
function boom()
{
var n = document.getElementById("editMe");
n.firstChild.remove();
document.documentElement.className = "";
}
</script>
</head>
<body onload="boom();">
<span id="editMe" style="margin-bottom: 1px;">a</span>
<div>b</div>
</body>
</html>