summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-15 15:33:45 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 15:33:45 -0500
commita61b9cd671f3378c4078c0a58dd8b8be073f8cef (patch)
tree1d0e29b2fc9477ac9956c904ea051e29c3b13f2d /test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js
parentdedd68020b222fe79fb4fe9f84465e842e4ca61f (diff)
downloadqtdeclarative-testsuites-a61b9cd671f3378c4078c0a58dd8b8be073f8cef.tar.gz
built-ins/Object/*: make all indentation consistent (depth & character) (#1432)
Diffstat (limited to 'test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js')
-rw-r--r--test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js
index 7ee68cada..54da883cc 100644
--- a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js
+++ b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-37.js
@@ -8,21 +8,21 @@ description: >
pushed into the returned array
---*/
- var proto = {};
- Object.defineProperty(proto, "parent", {
- get: function () {
- return "parent";
- },
- configurable: true
- });
+var proto = {};
+Object.defineProperty(proto, "parent", {
+ get: function() {
+ return "parent";
+ },
+ configurable: true
+});
- var Con = function () { };
- Con.prototype = proto;
+var Con = function() {};
+Con.prototype = proto;
- var child = new Con();
+var child = new Con();
- var result = Object.getOwnPropertyNames(child);
+var result = Object.getOwnPropertyNames(child);
- for (var p in result) {
- assert.notSameValue(result[p], "parent", 'result[p]');
- }
+for (var p in result) {
+ assert.notSameValue(result[p], "parent", 'result[p]');
+}