gecko/js/xpconnect/crashtests/723465.html
Peter Van der Beken d4809c1dce Fix for bug 723465 (Make finalize for DOM list bindings use XPConnect).
--HG--
extra : rebase_source : e4df7d98765aaa2c600044d69f8714568f1d6109
2012-04-27 10:15:40 +02:00

20 lines
340 B
HTML

<html>
<head>
<script>
function boom()
{
var f = document.getElementById("f");
var fd = f.contentDocument;
fd.querySelectorAll("*");
fd.documentElement.innerHTML = "3";
document.body.removeChild(f);
}
</script>
</head>
<body onload="boom();"><iframe id="f" src="data:text/html,<html><head onfocus=2>"></iframe></body>
</html>