tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

S15.1.3.3_A3.1_T1.js (604B)


      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    uriReserved
      8 esid: sec-encodeuri-uri
      9 description: Complex tests
     10 ---*/
     11 
     12 var uriReserved = [";", "/", "?", ":", "@", "&", "=", "+", "$", ","];
     13 for (var indexC = 0; indexC < uriReserved.length; indexC++) {
     14  var str = uriReserved[indexC];
     15  if (encodeURI(str) !== str) {
     16    throw new Test262Error('#' + (indexC + 1) + ': unescapedURISet containing' + str);
     17  }
     18 }
     19 
     20 reportCompare(0, 0);