summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/every/15.4.4.16-7-6.js
blob: 45bcdd29a160e3a568314be20b0560a95e3ee4c9 (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
27
// 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-6
description: >
    Array.prototype.every visits deleted element in array after the
    call when same index is also present in prototype
---*/

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

Array.prototype[2] = 3;
var arr = [1, 2, 3, 4, 5];

var res = arr.every(callbackfn);
delete Array.prototype[2];

assert.sameValue(res, false, 'res');