tor-browser

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

S15.1.3.3_A4_T1.js (862B)


      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-encodeuri-uri
      7 description: Checking ENGLISH ALPHABET
      8 ---*/
      9 
     10 //CHECK#1
     11 if (encodeURI("http://unipro.ru/0123456789") !== "http://unipro.ru/0123456789") {
     12  throw new Test262Error('#1: http://unipro.ru/0123456789');
     13 }
     14 
     15 //CHECK#2
     16 if (encodeURI("aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ") !== "aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ") {
     17  throw new Test262Error('#2: aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ');
     18 }
     19 
     20 //CHECK#3
     21 if (encodeURI("aA_bB-cC.dD!eE~fF*gG'hH(iI)jJ;kK/lL?mM:nN@oO&pP=qQ+rR$sS,tT9uU8vV7wW6xX5yY4zZ") !== "aA_bB-cC.dD!eE~fF*gG'hH(iI)jJ;kK/lL?mM:nN@oO&pP=qQ+rR$sS,tT9uU8vV7wW6xX5yY4zZ") {
     22  throw new Test262Error('#3: ');
     23 }
     24 
     25 reportCompare(0, 0);