OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../js/resources/js-test-pre.js"></script> | 3 <script src="../../../resources/js-test.js"></script> |
4 <script src="resources/webgl-test.js"></script> | 4 <script src="resources/webgl-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <div id="description"></div> | 7 <div id="description"></div> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 | 9 |
10 <script> | 10 <script> |
11 | 11 |
12 description('Test ArrayBuffer.byteLength'); | 12 description('Test ArrayBuffer.byteLength'); |
13 | 13 |
14 <!-- The following used to cause a crash in Chrome --> | 14 <!-- The following used to cause a crash in Chrome --> |
15 new ArrayBuffer().byteLength; | 15 new ArrayBuffer().byteLength; |
16 | 16 |
17 testPassed("new ArrayBuffer().byteLength did not crash"); | 17 testPassed("new ArrayBuffer().byteLength did not crash"); |
18 | 18 |
19 </script> | 19 </script> |
20 | 20 |
21 <script> | 21 <script> |
22 </script> | 22 </script> |
23 | 23 |
24 </body> | 24 </body> |
25 </html> | 25 </html> |
OLD | NEW |