summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/some/15.4.4.17-7-6.js
blob: 64ac2a2ed393c667992dfa0da87f9672e58b37c8 (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
28
29
// 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.some
description: >
    Array.prototype.some visits deleted element in array after the
    call when same index is also present in prototype
---*/

function callbackfn(val, idx, obj)
{
  delete arr[4];
  if (val < 5)
    return false;
  else
    return true;
}


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

var res = arr.some(callbackfn);
delete Array.prototype[4];

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

reportCompare(0, 0);