blob: 85dfa8b309e826bf47df1b1686a3e8329fd351ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<html>
<head>
<script src="../../js/resources/js-test-pre.js"></script>
<script src="resources/webgl-test.js"></script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script>
description('Verify that constructing a typed array view with no arguments and fetching its length does not crash');
<!-- The following used to cause a crash in both Safari and Chrome -->
new Uint32Array().length;
testPassed("new Uint32Array().length did not crash");
</script>
<script>
</script>
</body>
</html>
|