Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
class="reftest-wait">
<head>
<script>
function boom()
{
var doomedOption = document.getElementById("doomedOption");
var floated = document.getElementById("floated");
doomedOption.parentNode.removeChild(doomedOption);
floated.removeAttributeNS(null, "style");
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<select>
<xul:label>
<option id="doomedOption">M</option>
<span id="floated" style="float: right;"/>
</xul:label>
</select>
</body>
</html>