mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-15 18:31:43 +00:00
19 lines
262 B
HTML
19 lines
262 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var a = document.getElementsByTagName("div");
|
|
a.__proto__ = Proxy.create({has: function() { throw new Error; }});
|
|
for (var p in a) {
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|