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

Unified Diff: LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html

Issue 19230002: Use V8 implementation of TypedArrays and DataView in Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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: LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html
diff --git a/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html b/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html
index 37ac73a22bfaf236696012bb35507dddef99ccfd..c87645558fb2e627f9d002dcb4f1dbc084c0a141 100644
--- a/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html
+++ b/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html
@@ -44,6 +44,7 @@ function testConstructionWithNegativeOutOfRangeValues(type, name) {
}
}
+/*
function testConstructionOfHugeArray(type, name, sz) {
if (sz == 1)
return;
@@ -56,6 +57,7 @@ function testConstructionOfHugeArray(type, name, sz) {
testPassed("Construction of huge " + name + " threw exception");
}
}
+*/
Dmitry Lomov (no reviews) 2013/07/15 16:58:05 See huge array comment elsewhere
// These need to be global for shouldBe to see them
var array;
@@ -138,7 +140,7 @@ for (var i = 0; i < typeNames.length; i++) {
testConstructionWithNullBuffer(type, name);
testConstructionWithOutOfRangeValues(type, name);
testConstructionWithNegativeOutOfRangeValues(type, name);
- testConstructionOfHugeArray(type, name, typeSizes[i]);
+ //testConstructionOfHugeArray(type, name, typeSizes[i]);
testSubarrayWithOutOfRangeValues(type, name, typeSizes[i]);
testSettingFromArrayWithOutOfRangeOffset(type, name);
testSettingFromFakeArrayWithOutOfRangeLength(type, name);

Powered by Google App Engine
This is Rietveld 408576698