S15.1.3.3_A3.2_T1.js (835B)
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 :: uriAlpha" 10 ---*/ 11 12 var uriAlpha = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]; 13 for (var indexC = 0; indexC < uriAlpha.length; indexC++) { 14 var str = uriAlpha[indexC]; 15 if (encodeURI(str) !== str) { 16 throw new Test262Error('#' + (indexC + 1) + ': unescapedURISet containing ' + str); 17 } 18 } 19 20 reportCompare(0, 0);