test262/test/suite/ch15/15.3/15.3.4/15.3.4.3/S15.3.4.3_A8_T1.js
2011-10-03 13:04:52 -07:00

20 lines
595 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Function.prototype.apply can`t be used as [[create]] caller
*
* @path ch15/15.3/15.3.4/15.3.4.3/S15.3.4.3_A8_T1.js
* @description Checking if creating "new Function.prototype.apply" fails
*/
try {
obj = new Function.prototype.apply;
$ERROR('#1: Function.prototype.apply can\'t be used as [[create]] caller');
} catch (e) {
if (!(e instanceof TypeError)) {
$ERROR('#1.1: Function.prototype.apply can\'t be used as [[create]] caller');
}
}