summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/filter/15.4.4.20-9-b-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/filter/15.4.4.20-9-b-3.js')
-rw-r--r--test/built-ins/Array/prototype/filter/15.4.4.20-9-b-3.js27
1 files changed, 15 insertions, 12 deletions
diff --git a/test/built-ins/Array/prototype/filter/15.4.4.20-9-b-3.js b/test/built-ins/Array/prototype/filter/15.4.4.20-9-b-3.js
index 9201770ac..fd2a2612e 100644
--- a/test/built-ins/Array/prototype/filter/15.4.4.20-9-b-3.js
+++ b/test/built-ins/Array/prototype/filter/15.4.4.20-9-b-3.js
@@ -9,20 +9,23 @@ description: >
here
---*/
- function callbackfn(val, idx, obj) {
- return true;
- }
- var obj = { 2: 6.99, 8: 19 };
+function callbackfn(val, idx, obj) {
+ return true;
+}
+var obj = {
+ 2: 6.99,
+ 8: 19
+};
- Object.defineProperty(obj, "length", {
- get: function () {
- delete obj[2];
- return 10;
- },
- configurable: true
- });
+Object.defineProperty(obj, "length", {
+ get: function() {
+ delete obj[2];
+ return 10;
+ },
+ configurable: true
+});
- var newArr = Array.prototype.filter.call(obj, callbackfn);
+var newArr = Array.prototype.filter.call(obj, callbackfn);
assert.sameValue(newArr.length, 1, 'newArr.length');
assert.notSameValue(newArr[0], 6.99, 'newArr[0]');