tor-browser

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

S15.1.3.1_A4_T1.js (819B)


      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: URI tests
      6 esid: sec-decodeuri-encodeduri
      7 description: Checking ENGLISH ALPHABET
      8 ---*/
      9 
     10 //CHECK#1
     11 if (decodeURI("http://unipro.ru/0123456789") !== "http://unipro.ru/0123456789") {
     12  throw new Test262Error('#1: http://unipro.ru/0123456789');
     13 }
     14 
     15 //CHECK#2
     16 if (decodeURI("%41%42%43%44%45%46%47%48%49%4A%4B%4C%4D%4E%4F%50%51%52%53%54%55%56%57%58%59%5A") !== "ABCDEFGHIJKLMNOPQRSTUVWXYZ") {
     17  throw new Test262Error('#2: ABCDEFGHIJKLMNOPQRSTUVWXYZ');
     18 }
     19 
     20 //CHECK#3
     21 if (decodeURI("%61%62%63%64%65%66%67%68%69%6A%6B%6C%6D%6E%6F%70%71%72%73%74%75%76%77%78%79%7A") !== "abcdefghijklmnopqrstuvwxyz") {
     22  throw new Test262Error('#3: abcdefghijklmnopqrstuvwxyz');
     23 }
     24 
     25 reportCompare(0, 0);