S7.2_A2.4_T2.js (402B)
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_T2 7 description: Use real SPACE 8 ---*/ 9 10 //CHECK#1 11 if (" str ing " !== "\u0020str\u0020ing\u0020") { 12 throw new Test262Error('#1: " str ing " === "\\u0020str\\u0020ing\\u0020"'); 13 } 14 15 reportCompare(0, 0);