mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
b3ddab0df3
--HG-- rename : content/base/test/test_bug490760.xhtml => content/base/crashtests/490760-1.xhtml
26 lines
540 B
HTML
26 lines
540 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<script type="text/javascript">
|
|
<![CDATA[
|
|
|
|
function boom()
|
|
{
|
|
var q = document.getElementsByTagName("style")[0];
|
|
|
|
window.addEventListener("DOMNodeRemoved", f, false);
|
|
q.innerHTML = "<span><\/span>";
|
|
window.removeEventListener("DOMNodeRemoved", f, false);
|
|
|
|
function f()
|
|
{
|
|
window.removeEventListener("DOMNodeRemoved", f, false);
|
|
q.removeChild(q.childNodes[1]);
|
|
}
|
|
}
|
|
|
|
]]>
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"><style><span></span><span></span></style></body>
|
|
</html>
|