summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/721910.html
blob: d2d7bbeb42e8a402b3d10af77e393fb9fccb98dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>