summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-238.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-238.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-238.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-238.js b/test/built-ins/Object/create/15.2.3.5-4-238.js
index b9e656c9a..bd1d72427 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-238.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-238.js
@@ -8,22 +8,22 @@ description: >
an inherited accessor property (8.10.5 step 7.a)
---*/
-var proto = {};
+ var proto = {};
-Object.defineProperty(proto, "get", {
- get: function() {
- return function() {
- return "inheritedAccessorProperty";
- };
- }
-});
+ Object.defineProperty(proto, "get", {
+ get: function () {
+ return function () {
+ return "inheritedAccessorProperty";
+ };
+ }
+ });
-var ConstructFun = function() {};
-ConstructFun.prototype = proto;
-var descObj = new ConstructFun();
+ var ConstructFun = function () { };
+ ConstructFun.prototype = proto;
+ var descObj = new ConstructFun();
-var newObj = Object.create({}, {
- prop: descObj
-});
+ var newObj = Object.create({}, {
+ prop: descObj
+ });
assert.sameValue(newObj.prop, "inheritedAccessorProperty", 'newObj.prop');