S15.1.3.4_A3.2_T2.js (676B)
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 :: DecimalDigit" 10 ---*/ 11 12 var DecimalDigit = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]; 13 for (var indexC = 0; indexC < DecimalDigit.length; indexC++) { 14 var str = DecimalDigit[indexC]; 15 if (encodeURIComponent(str) !== str) { 16 throw new Test262Error('#' + (indexC + 1) + ': unescapedURISet containing' + str); 17 } 18 } 19 20 reportCompare(0, 0);