Source code

Revision control

Copy as Markdown

Other Tools

<html>
<head>
<script>
function boom()
{
obj = document.getElementsByTagName("object")[0];
obj.__proto__ = null;
for (p in obj)
dump(p + "\n");
}
</script>
</head>
<body onload="setTimeout(boom, 200);">
<object></object>
</body>
</html>