mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
13 lines
265 B
HTML
13 lines
265 B
HTML
<html>
|
|
<body>
|
|
<div id="foo">
|
|
<script>
|
|
function get(x) { return x }
|
|
obj = {};
|
|
obj.__proto__ = get(document.all);
|
|
obj.foo
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|