summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-163.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-163.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-163.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-163.js b/test/built-ins/Object/create/15.2.3.5-4-163.js
index 4dedb1f63..2f3d0e80f 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-163.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-163.js
@@ -9,26 +9,26 @@ description: >
an inherited accessor property (8.10.5 step 5.a)
---*/
-var proto = {};
+ var proto = {};
-Object.defineProperty(proto, "value", {
- get: function() {
- return "inheritedAccessorProperty";
- }
-});
+ Object.defineProperty(proto, "value", {
+ get: function () {
+ return "inheritedAccessorProperty";
+ }
+ });
-var ConstructFun = function() {};
-ConstructFun.prototype = proto;
+ var ConstructFun = function () { };
+ ConstructFun.prototype = proto;
-var descObj = new ConstructFun();
+ var descObj = new ConstructFun();
-Object.defineProperty(descObj, "value", {
- set: function() {}
-});
+ Object.defineProperty(descObj, "value", {
+ set: function () { }
+ });
-var newObj = Object.create({}, {
- prop: descObj
-});
+ var newObj = Object.create({}, {
+ prop: descObj
+ });
assert(newObj.hasOwnProperty("prop"), 'newObj.hasOwnProperty("prop") !== true');
-assert.sameValue(typeof(newObj.prop), "undefined", 'typeof (newObj.prop)');
+assert.sameValue(typeof (newObj.prop), "undefined", 'typeof (newObj.prop)');