summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch11/11.1/11.1.4/S11.1.4_A1.6.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/ch11/11.1/11.1.4/S11.1.4_A1.6.js')
-rw-r--r--js/src/tests/test262/ch11/11.1/11.1.4/S11.1.4_A1.6.js57
1 files changed, 57 insertions, 0 deletions
diff --git a/js/src/tests/test262/ch11/11.1/11.1.4/S11.1.4_A1.6.js b/js/src/tests/test262/ch11/11.1/11.1.4/S11.1.4_A1.6.js
new file mode 100644
index 000000000..589eb3c0d
--- /dev/null
+++ b/js/src/tests/test262/ch11/11.1/11.1.4/S11.1.4_A1.6.js
@@ -0,0 +1,57 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * Evaluate the production ArrayLiteral: [ Elision, AssignmentExpression, Elision ]
+ *
+ * @path ch11/11.1/11.1.4/S11.1.4_A1.6.js
+ * @description Checking various properteis and contents of the array defined with "var array = [,,3,,,]"
+ */
+
+var array = [,,3,,,];
+
+//CHECK#1
+if (typeof array !== "object") {
+ $ERROR('#1: var array = [,,3,,,]; typeof array === "object". Actual: ' + (typeof array));
+}
+
+//CHECK#2
+if (array instanceof Array !== true) {
+ $ERROR('#2: var array = [,,3,,,]; array instanceof Array === true');
+}
+
+//CHECK#3
+if (array.toString !== Array.prototype.toString) {
+ $ERROR('#3: var array = [,,3,,,]; array.toString === Array.prototype.toString. Actual: ' + (array.toString));
+}
+
+//CHECK#4
+if (array.length !== 5) {
+ $ERROR('#4: var array = [,,3,,,]; array.length === 5. Actual: ' + (array.length));
+}
+
+//CHECK#5
+if (array[0] !== undefined) {
+ $ERROR('#5: var array = [,,3,,,]; array[0] === undefined. Actual: ' + (array[0]));
+}
+
+//CHECK#6
+if (array[1] !== undefined) {
+ $ERROR('#6: var array = [,,3,,,]; array[1] === undefined. Actual: ' + (array[1]));
+}
+
+//CHECK#7
+if (array[2] !== 3) {
+ $ERROR('#7: var array = [,,3,,,]; array[2] === 3. Actual: ' + (array[2]));
+}
+
+//CHECK#8
+if (array[3] !== undefined) {
+ $ERROR('#8: var array = [,,3,,,]; array[3] === undefined. Actual: ' + (array[3]));
+}
+
+//CHECK#9
+if (array[4] !== undefined) {
+ $ERROR('#9: var array = [,,3,,,]; array[4] === undefined. Actual: ' + (array[4]));
+}
+