S15.1.3.3_A3.2_T3.js (615B)
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 unescapedURISet containing one instance of each character valid in 7 uriUnescaped 8 esid: sec-encodeuri-uri 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 (encodeURI(str) !== str) { 16 throw new Test262Error('#' + (indexC + 1) + ': unescapedURISet containing' + str); 17 } 18 } 19 20 reportCompare(0, 0);