| Index: third_party/WebKit/LayoutTests/fast/canvas/webgl/array-buffer-view-crash-when-reassigned.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/canvas/webgl/array-buffer-view-crash-when-reassigned.html b/third_party/WebKit/LayoutTests/fast/canvas/webgl/array-buffer-view-crash-when-reassigned.html
|
| deleted file mode 100644
|
| index 96a67261adc3a49ff35b0dfc8849e2b35e382eb1..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/canvas/webgl/array-buffer-view-crash-when-reassigned.html
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -<script src="resources/webgl-test.js"></script>
|
| -</head>
|
| -<body>
|
| -<div id="description"></div>
|
| -<div id="console"></div>
|
| -
|
| -<script>
|
| -
|
| -description('Verify that reassigning typed array constructor does not crash.');
|
| -
|
| -<!-- The following used to cause a crash in Chrome -->
|
| -Uint8Array = 0;
|
| -Uint16Array = "string";
|
| -Uint32Array = function() {};
|
| -Int16Array = function() {};
|
| -Int16Array.prototype.set = 0;
|
| -new Float64Array(function () {});
|
| -new Float32Array([1, 2, 3], 1);
|
| -new Int16Array(function() {});
|
| -testPassed("reassigning typed array constructor did not crash");
|
| -
|
| -</script>
|
| -
|
| -<script>
|
| -</script>
|
| -
|
| -</body>
|
| -</html>
|
|
|