gecko-dev/js/xpconnect/crashtests/721910.html
2017-12-05 11:02:57 -05:00

15 lines
210 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
a = Int8Array(0x01000000);
p = Proxy.create({ get: function(r, name) { return a[name]; } });
try { Int8Array(p); } catch(e) { }
</script>
</head>
<body></body>
</html>