blob: c8ed73db1680343e0ba9e0da78bd8e9f91ebe45d [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-1-3
description: Array.prototype.filter applied to boolean primitive
---*/
function callbackfn(val, idx, obj) {
return obj instanceof Boolean;
}
Boolean.prototype[0] = true;
Boolean.prototype.length = 1;
var newArr = Array.prototype.filter.call(false, callbackfn);
assert.sameValue(newArr[0], true, 'newArr[0]');