summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/map/15.4.4.19-8-7.js
blob: 6d203fceba49617ccf7fc1e950cf3ebdc4b3e399 (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
// 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.map
description: Array.prototype.map successful to delete the object in callbackfn
---*/

var obj = {};
obj.srcArr = [1, 2, 3, 4, 5];

function callbackfn(val, idx, obj) {
  delete obj.srcArr;
  if (val > 0)
    return 1;
  else
    return 0;
}

var resArr = obj.srcArr.map(callbackfn);

assert.sameValue(resArr.toString(), "1,1,1,1,1", 'resArr.toString()');
assert.sameValue(obj.hasOwnProperty("arr"), false, 'obj.hasOwnProperty("arr")');

reportCompare(0, 0);