string-space.js (584B)
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: SPACE (U+0020) may occur within strings 6 es5id: 7.2_A2.4_T1 7 description: Use SPACE(\u0020) 8 ---*/ 9 10 // CHECK#1 11 if (eval("'\u0020str\u0020ing\u0020'") !== "\u0020str\u0020ing\u0020") { 12 throw new Test262Error('#1: eval("\'\\u0020str\\u0020ing\\u0020\'") === "\\u0020str\\u0020ing\\u0020"'); 13 } 14 15 //CHECK#2 16 if (eval("' str ing '") !== " str ing ") { 17 throw new Test262Error('#2: eval("\' str ing \'") === " str ing "'); 18 } 19 20 reportCompare(0, 0);