aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.5_Properties_of_Array_Instances/15.4.5.2_length/S15.4.5.2_A3_T4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.5_Properties_of_Array_Instances/15.4.5.2_length/S15.4.5.2_A3_T4.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.5_Properties_of_Array_Instances/15.4.5.2_length/S15.4.5.2_A3_T4.js54
1 files changed, 0 insertions, 54 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.5_Properties_of_Array_Instances/15.4.5.2_length/S15.4.5.2_A3_T4.js b/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.5_Properties_of_Array_Instances/15.4.5.2_length/S15.4.5.2_A3_T4.js
deleted file mode 100644
index dadda87ad..000000000
--- a/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.5_Properties_of_Array_Instances/15.4.5.2_length/S15.4.5.2_A3_T4.js
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S15.4.5.2_A3_T4;
- * @section: 15.4.5.2, 15.4.2.2;
- * @assertion: If the length property is changed, every property whose name
- * is an array index whose value is not smaller than the new length is automatically deleted;
- * @description: If new length greater than the name of every property whose name
- * is an array index;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.4.5.2_A3_T4",
-
-path: "TestCases/15_Native/15.4_Array_Objects/15.4.5_Properties_of_Array_Instances/15.4.5.2_length/S15.4.5.2_A3_T4.js",
-
-assertion: "If the length property is changed, every property whose name",
-
-description: "If new length greater than the name of every property whose name",
-
-test: function testcase() {
- //CHECK#1
-var x = [0,1,2];
-x[4294967294] = 4294967294;
-x.length = 2;
-
-//CHECK#1
-if (x[0] !== 0) {
- $ERROR('#1: x = [0,1,2]; x[4294967294] = 4294967294; x.length = 2; x[0] === 0. Actual: ' + (x[0]));
-}
-
-//CHECK#2
-if (x[1] !== 1) {
- $ERROR('#2: x = [0,1,2]; x[4294967294] = 4294967294; x.length = 2; x[1] === 1. Actual: ' + (x[1]));
-}
-
-//CHECK#3
-if (x[2] !== undefined) {
- $ERROR('#3: x = [0,1,2]; x[4294967294] = 4294967294; x.length = 2; x[2] === undefined. Actual: ' + (x[2]));
-}
-
-//CHECK#4
-if (x[4294967294] !== undefined) {
- $ERROR('#4: x = [0,1,2]; x[4294967294] = 4294967294; x.length = 2; x[4294967294] === undefined. Actual: ' + (x[4294967294]));
-}
-
-
- }
-});
-