blob: bbb9911ac04921f41a912f0affdb56eb13b9fa90 [file] [log] [blame]
// 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.filter
es5id: 15.4.4.20-5-21
description: Array.prototype.filter - the global object can be used as thisArg
---*/
var global = this;
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return this === global;
}
var newArr = [11].filter(callbackfn, global);
assert.sameValue(newArr[0], 11, 'newArr[0]');
assert(accessed, 'accessed !== true');