tenfourfox/js/xpconnect/crashtests/468552-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
300 B
HTML

<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();
} catch(e) { }
}
</script>
</head>
<body onload="boom();"></body>
</html>