S15.5.3_A1.js (586B)
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: String has length property whose value is 1 6 es5id: 15.5.3_A1 7 description: Checking String.length 8 ---*/ 9 10 ////////////////////////////////////////////////////////////////////////////// 11 // CHECK# 12 if (String.length !== 1) { 13 throw new Test262Error('String has length property whose value is 1. Actual: String.length===' + String.length); 14 } 15 // 16 ////////////////////////////////////////////////////////////////////////////// 17 18 reportCompare(0, 0);