summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-12.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-12.js')
-rw-r--r--test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-12.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-12.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-12.js
index 7dc94d210..bcd3b4287 100644
--- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-12.js
+++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-c-i-12.js
@@ -9,21 +9,21 @@ description: >
property that overrides an inherited data property on an Array
---*/
-function callbackfn(val, idx, obj) {
- return val === 111 && idx === 0;
-}
+ function callbackfn(val, idx, obj) {
+ return val === 111 && idx === 0;
+ }
-var arr = [];
+ var arr = [];
-Array.prototype[0] = 10;
+ Array.prototype[0] = 10;
-Object.defineProperty(arr, "0", {
- get: function() {
- return 111;
- },
- configurable: true
-});
-var newArr = arr.filter(callbackfn);
+ Object.defineProperty(arr, "0", {
+ get: function () {
+ return 111;
+ },
+ configurable: true
+ });
+ var newArr = arr.filter(callbackfn);
assert.sameValue(newArr.length, 1, 'newArr.length');
assert.sameValue(newArr[0], 111, 'newArr[0]');