gecko/js/xpconnect/crashtests/468552-1.html

19 lines
300 B
HTML
Raw Normal View History

2009-01-01 14:18:58 -08:00
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
var dp = document.__proto__;
dp.__proto__ = new XPCNativeWrapper(new XMLSerializer);
try {
dp.replaceChild();
2009-01-01 14:18:58 -08:00
} catch(e) { }
}
</script>
</head>
<body onload="boom();"></body>
</html>