summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/defineProperties/15.2.3.7-3-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/defineProperties/15.2.3.7-3-3.js')
-rw-r--r--test/built-ins/Object/defineProperties/15.2.3.7-3-3.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/built-ins/Object/defineProperties/15.2.3.7-3-3.js b/test/built-ins/Object/defineProperties/15.2.3.7-3-3.js
index 26cb92f2b..d4dc3cafc 100644
--- a/test/built-ins/Object/defineProperties/15.2.3.7-3-3.js
+++ b/test/built-ins/Object/defineProperties/15.2.3.7-3-3.js
@@ -8,19 +8,19 @@ description: >
'Properties' is not defined in 'O'
---*/
-var obj = {};
+ var obj = {};
-var proto = {};
+ var proto = {};
-Object.defineProperty(proto, "prop", {
- value: {},
- enumerable: true
-});
+ Object.defineProperty(proto, "prop", {
+ value: {},
+ enumerable: true
+ });
-var Con = function() {};
-Con.prototype = proto;
-var child = new Con();
+ var Con = function () { };
+ Con.prototype = proto;
+ var child = new Con();
-Object.defineProperties(obj, child);
+ Object.defineProperties(obj, child);
assert.sameValue(obj.hasOwnProperty("prop"), false, 'obj.hasOwnProperty("prop")');