diff options
author | André Bargull <andre.bargull@gmail.com> | 2018-02-09 09:09:47 -0800 |
---|---|---|
committer | Leo Balter <leonardo.balter@gmail.com> | 2018-02-09 12:09:47 -0500 |
commit | f95b56ab28c5f18150f30fbfa889a4f6ba0e50a1 (patch) | |
tree | d403f704c1b6a1842f12df380651919beaaf5fef /test/built-ins/Object/create/15.2.3.5-4-159.js | |
parent | a01de4a722d088055a7d84d8c691ddd7109edb34 (diff) | |
download | qtdeclarative-testsuites-f95b56ab28c5f18150f30fbfa889a4f6ba0e50a1.tar.gz |
Revert "js-beautify: make all indentation consistent (depth & character) (#1409)" (#1412)
This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34.
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-159.js')
-rw-r--r-- | test/built-ins/Object/create/15.2.3.5-4-159.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-159.js b/test/built-ins/Object/create/15.2.3.5-4-159.js index c23265613..4ed1f46a4 100644 --- a/test/built-ins/Object/create/15.2.3.5-4-159.js +++ b/test/built-ins/Object/create/15.2.3.5-4-159.js @@ -8,21 +8,21 @@ description: > is an inherited accessor property (8.10.5 step 5.a) ---*/ -var proto = {}; + var proto = {}; -Object.defineProperty(proto, "value", { - get: function() { - return "inheritedAccessorProperty"; - } -}); + Object.defineProperty(proto, "value", { + get: function () { + return "inheritedAccessorProperty"; + } + }); -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, "inheritedAccessorProperty", 'newObj.prop'); |