mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
251 B
HTML
21 lines
251 B
HTML
<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> |