summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/keys/15.2.3.14-5-13.js
diff options
context:
space:
mode:
authorAndré Bargull <andre.bargull@gmail.com>2018-02-09 09:09:47 -0800
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 12:09:47 -0500
commitf95b56ab28c5f18150f30fbfa889a4f6ba0e50a1 (patch)
treed403f704c1b6a1842f12df380651919beaaf5fef /test/built-ins/Object/keys/15.2.3.14-5-13.js
parenta01de4a722d088055a7d84d8c691ddd7109edb34 (diff)
downloadqtdeclarative-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/keys/15.2.3.14-5-13.js')
-rw-r--r--test/built-ins/Object/keys/15.2.3.14-5-13.js36
1 files changed, 18 insertions, 18 deletions
diff --git a/test/built-ins/Object/keys/15.2.3.14-5-13.js b/test/built-ins/Object/keys/15.2.3.14-5-13.js
index 4c87e4d47..1dd461cab 100644
--- a/test/built-ins/Object/keys/15.2.3.14-5-13.js
+++ b/test/built-ins/Object/keys/15.2.3.14-5-13.js
@@ -8,28 +8,28 @@ description: >
'O' is defined in returned array
---*/
-var obj = [1, , 3, , 5];
+ var obj = [1, , 3, , 5];
-Object.defineProperty(obj, 5, {
- value: 7,
- enumerable: false,
- configurable: true
-});
+ Object.defineProperty(obj, 5, {
+ value: 7,
+ enumerable: false,
+ configurable: true
+ });
-Object.defineProperty(obj, 10000, {
- value: "ElementWithLargeIndex",
- enumerable: true,
- configurable: true
-});
+ Object.defineProperty(obj, 10000, {
+ value: "ElementWithLargeIndex",
+ enumerable: true,
+ configurable: true
+ });
-var arr = Object.keys(obj);
+ var arr = Object.keys(obj);
-var index;
-var initValue = 0;
-for (index = 0; index < 3; index++) {
- assert.sameValue(arr[index], initValue.toString(), 'Unexpected property at index: ' + index);
- initValue += 2;
-}
+ var index;
+ var initValue = 0;
+ for (index = 0; index < 3; index++) {
+ assert.sameValue(arr[index], initValue.toString(), 'Unexpected property at index: ' + index);
+ initValue += 2;
+ }
assert.sameValue(arr.length, 4, 'arr.length');
assert.sameValue(arr[3], "10000", 'arr[3]');