summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/keys/15.2.3.14-5-14.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/keys/15.2.3.14-5-14.js
parent7b01f9799f99851955f23c18c12e6651c1941022 (diff)
downloadqtdeclarative-testsuites-a01de4a722d088055a7d84d8c691ddd7109edb34.tar.gz
js-beautify: make all indentation consistent (depth & character) (#1409)
Diffstat (limited to 'test/built-ins/Object/keys/15.2.3.14-5-14.js')
-rw-r--r--test/built-ins/Object/keys/15.2.3.14-5-14.js30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/built-ins/Object/keys/15.2.3.14-5-14.js b/test/built-ins/Object/keys/15.2.3.14-5-14.js
index 6b9c3ae25..2f9bd9617 100644
--- a/test/built-ins/Object/keys/15.2.3.14-5-14.js
+++ b/test/built-ins/Object/keys/15.2.3.14-5-14.js
@@ -10,23 +10,23 @@ description: >
var propertyFound = false;
- var obj = [1, , 3, , 5];
+var obj = [1, , 3, , 5];
- Object.defineProperty(obj, "10000", {
- get: function () {
- return "ElementWithLargeIndex";
- },
- enumerable: true,
- configurable: true
- });
+Object.defineProperty(obj, "10000", {
+ get: function() {
+ return "ElementWithLargeIndex";
+ },
+ enumerable: true,
+ configurable: true
+});
- var arr = Object.keys(obj);
+var arr = Object.keys(obj);
- for (var p in arr) {
- if (arr[p] === "10000") {
- propertyFound = true;
- break;
- }
- }
+for (var p in arr) {
+ if (arr[p] === "10000") {
+ propertyFound = true;
+ break;
+ }
+}
assert(propertyFound, 'Property not found');