summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-38.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-38.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-38.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-38.js b/test/built-ins/Object/create/15.2.3.5-4-38.js
index b0ffcabf0..50cd1a2eb 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-38.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-38.js
@@ -9,13 +9,15 @@ description: >
property (15.2.3.7 step 5.a)
---*/
- var argObj = (function () { return arguments; })();
+var argObj = (function() {
+ return arguments;
+})();
- argObj.prop = {
- value: 12,
- enumerable: true
- };
+argObj.prop = {
+ value: 12,
+ enumerable: true
+};
- var newObj = Object.create({}, argObj);
+var newObj = Object.create({}, argObj);
assert(newObj.hasOwnProperty("prop"), 'newObj.hasOwnProperty("prop") !== true');