summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-155.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-155.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-155.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-155.js b/test/built-ins/Object/create/15.2.3.5-4-155.js
index 9da761bcb..37fa24eb3 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-155.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-155.js
@@ -8,17 +8,17 @@ description: >
is an inherited data property (8.10.5 step 5.a)
---*/
- var proto = {
- value: "inheritedDataProperty"
- };
+var proto = {
+ value: "inheritedDataProperty"
+};
- var ConstructFun = function () { };
- ConstructFun.prototype = proto;
+var ConstructFun = function() {};
+ConstructFun.prototype = proto;
- var descObj = new ConstructFun();
+var descObj = new ConstructFun();
- var newObj = Object.create({}, {
- prop: descObj
- });
+var newObj = Object.create({}, {
+ prop: descObj
+});
assert.sameValue(newObj.prop, "inheritedDataProperty", 'newObj.prop');