Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/array-buffer-view-crash-when-reassigned.html

Issue 2447493002: Removed some duplicate layout tests under fast/canvas/webgl (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698