S15.1.3.4_A3.2_T3.js (651B)
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 unescapedURIComponentSet containing one instance of each character valid 7 in uriUnescaped 8 esid: sec-encodeuricomponent-uricomponent 9 description: "Complex tests, uriUnescaped :: uriMark" 10 ---*/ 11 12 var uriMark = ["-", "_", ".", "!", "~", "*", "'", "(", ")"]; 13 for (var indexC = 0; indexC < uriMark.length; indexC++) { 14 var str = uriMark[indexC]; 15 if (encodeURIComponent(str) !== str) { 16 throw new Test262Error('#' + (indexC + 1) + ': unescapedURISet containing' + str); 17 } 18 } 19 20 reportCompare(0, 0);