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

28 lines
640 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* The length property of the apply method is 2
*
* @path ch15/15.3/15.3.4/15.3.4.3/S15.3.4.3_A2_T2.js
* @description Checking f.apply.length, where f is new Function
*/
var f=new Function;
//CHECK#1
if (typeof f.apply !== "function") {
$ERROR('#1: apply method accessed');
}
//CHECK#2
if (typeof f.apply.length === "undefined") {
$ERROR('#2: length property of apply method defined');
}
//CHECK#3
if (f.apply.length !== 2) {
$ERROR('#3: The length property of the apply method is 2');
}