| 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");
|
| }
|
| }
|
| +*/
|
|
|
| // 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);
|
|
|