S15.8.2.11_A4.js (634B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: The length property of the Math.max method is 2 6 es5id: 15.8.2.11_A4 7 description: Checking if Math.max.length property is defined and equals to 2 8 ---*/ 9 assert.sameValue(typeof Math.max, "function", 'The value of `typeof Math.max` is expected to be "function"'); 10 assert.notSameValue(typeof Math.max.length, "undefined", 'The value of typeof Math.max.length is not "undefined"'); 11 assert.sameValue(Math.max.length, 2, 'The value of Math.max.length is expected to be 2'); 12 13 reportCompare(0, 0);