Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / webgl / array-buffer-view-crash-when-reassigned.html
blob96a67261adc3a49ff35b0dfc8849e2b35e382eb1
1 <html>
2 <head>
3 <script src="../../../resources/js-test.js"></script>
4 <script src="resources/webgl-test.js"></script>
5 </head>
6 <body>
7 <div id="description"></div>
8 <div id="console"></div>
10 <script>
12 description('Verify that reassigning typed array constructor does not crash.');
14 <!-- The following used to cause a crash in Chrome -->
15 Uint8Array = 0;
16 Uint16Array = "string";
17 Uint32Array = function() {};
18 Int16Array = function() {};
19 Int16Array.prototype.set = 0;
20 new Float64Array(function () {});
21 new Float32Array([1, 2, 3], 1);
22 new Int16Array(function() {});
23 testPassed("reassigning typed array constructor did not crash");
25 </script>
27 <script>
28 </script>
30 </body>
31 </html>