summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch13/13.2/S13.2_A4_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/ch13/13.2/S13.2_A4_T2.js')
-rw-r--r--js/src/tests/test262/ch13/13.2/S13.2_A4_T2.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/js/src/tests/test262/ch13/13.2/S13.2_A4_T2.js b/js/src/tests/test262/ch13/13.2/S13.2_A4_T2.js
new file mode 100644
index 000000000..2da55b763
--- /dev/null
+++ b/js/src/tests/test262/ch13/13.2/S13.2_A4_T2.js
@@ -0,0 +1,52 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * When Function object(F) is constructed the following steps from 9 to 11 take place
+ * 9.Create a new object as would be constructed by the expression new Object().
+ * 10. Set the constructor property of Result(9) to F. This property is given attributes { DontEnum }.
+ * 11. Set the "prototype" property of F to Result(9).
+ *
+ * @path ch13/13.2/S13.2_A4_T2.js
+ * @description Checking prototype, prototype.constructor properties and {DontEnum} property of a constructor.
+ * Using "var __gunc = function(){}" as a FunctionDeclaration
+ */
+
+var __gunc = function(){};
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+if (typeof __gunc.prototype !== 'object') {
+ $ERROR('#1: typeof __gunc.prototype === \'object\'. Actual: typeof __gunc.prototype ==='+typeof __gunc.prototype);
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#2
+if (__gunc.prototype.constructor !== __gunc) {
+ $ERROR('#2: __gunc.prototype.constructor === __gunc. Actual: __gunc.prototype.constructor ==='+__gunc.prototype.constructor);
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+var __constructor_was__enumed;
+
+for (__prop in __gunc.prototype){
+ if (__prop === 'constructor')
+ __constructor_was__enumed = true;
+}
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#3
+if (__constructor_was__enumed) {
+ $ERROR('#3: __constructor_was__enumed === false. Actual: __constructor_was__enumed ==='+__constructor_was__enumed);
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+
+
+
+
+