1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<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>