S11.8.3_A3.2_T1.1.js (1093B)
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: | 6 Operator x <= y returns ToString(x) <= ToString(y), if Type(Primitive(x)) 7 is String and Type(Primitive(y)) is String 8 es5id: 11.8.3_A3.2_T1.1 9 description: > 10 Type(Primitive(x)) and Type(Primitive(y)) vary between primitive 11 string and String object 12 ---*/ 13 14 //CHECK#1 15 if ("1" <= "1" !== true) { 16 throw new Test262Error('#1: "1" <= "1" === true'); 17 } 18 19 //CHECK#2 20 if (new String("1") <= "1" !== true) { 21 throw new Test262Error('#2: new String("1") <= "1" === true'); 22 } 23 24 //CHECK#3 25 if ("1" <= new String("1") !== true) { 26 throw new Test262Error('#3: "1" <= new String("1") === true'); 27 } 28 29 //CHECK#4 30 if (new String("1") <= new String("1") !== true) { 31 throw new Test262Error('#4: new String("1") <= new String("1") === true'); 32 } 33 34 //CHECK#5 35 if ("x" <= "1" !== false) { 36 throw new Test262Error('#5: "x" <= "1" === false'); 37 } 38 39 //CHECK#6 40 if ("1" <= "x" !== true) { 41 throw new Test262Error('#6: "1" <= "x" === true'); 42 } 43 44 reportCompare(0, 0);