summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/object/S8.6.2_A2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/types/object/S8.6.2_A2.js')
-rw-r--r--js/src/tests/test262/language/types/object/S8.6.2_A2.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/types/object/S8.6.2_A2.js b/js/src/tests/test262/language/types/object/S8.6.2_A2.js
new file mode 100644
index 0000000000..d318fc65d6
--- /dev/null
+++ b/js/src/tests/test262/language/types/object/S8.6.2_A2.js
@@ -0,0 +1,40 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ Properties of the [[Prototype]] object
+ are visible as properties of the child object for the purposes of get access, but not for put access
+es5id: 8.6.2_A2
+description: >
+ Check visibility properties of the child object for the purposes
+ of get access, but not for put access
+---*/
+
+//Establish foo object
+function FooObj(){};
+FooObj.prototype.prop="some";
+
+// Invoke instance of foo object
+var foo= new FooObj;
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+if (foo.prop !== "some"){
+ throw new Test262Error('#1: function FooObj(){}; FooObj.prototype.prop="some"; var foo= new FooObj; foo.prop === "some". Actual: ' + (foo.prop));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#2
+foo.prop=true;
+// Invoke another instance of foo object
+var foo__ = new FooObj;
+if (foo__.prop !== "some"){
+ throw new Test262Error('#2: function FooObj(){}; FooObj.prototype.prop="some"; var foo= new FooObj; foo.prop=true; var foo__ = new FooObj; foo__.prop === "some". Actual: ' + (foo__.prop));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+reportCompare(0, 0);