summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-243.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-09 11:35:37 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 11:35:37 -0500
commita01de4a722d088055a7d84d8c691ddd7109edb34 (patch)
treef583c8efd40a3b699261f1166da75a9861d83e7b /test/built-ins/Object/create/15.2.3.5-4-243.js
parent7b01f9799f99851955f23c18c12e6651c1941022 (diff)
downloadqtdeclarative-testsuites-a01de4a722d088055a7d84d8c691ddd7109edb34.tar.gz
js-beautify: make all indentation consistent (depth & character) (#1409)
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-243.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-243.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-243.js b/test/built-ins/Object/create/15.2.3.5-4-243.js
index 05b2a2014..f18c3865d 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-243.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-243.js
@@ -9,19 +9,19 @@ description: >
7.a)
---*/
- var proto = {};
+var proto = {};
- Object.defineProperty(proto, "get", {
- set: function () { }
- });
+Object.defineProperty(proto, "get", {
+ set: function() {}
+});
- 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(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)');