summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/every/15.4.4.16-7-5.js
blob: c7cfcd23eef68a3b904d56bdfb1df1ec8385b503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.every
es5id: 15.4.4.16-7-5
description: >
    Array.prototype.every doesn't consider newly added elements in
    sparse array
---*/

  function callbackfn(val, Idx, obj)
  {
    arr[1000] = 3;
    if(val < 3)
       return true;
    else
       return false;
  }

  var arr = new Array(10);
  arr[1] = 1;
  arr[2] = 2;


assert.sameValue(arr.every(callbackfn), true, 'arr.every(callbackfn)');