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