tor-browser

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

S15.1.3.3_A4_T3.js (1150B)


      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 URL with Line Terminator
      8 ---*/
      9 
     10 //CHECK#1
     11 if ((encodeURI("http://unipro.ru/\nabout") !== "http://unipro.ru/%0Aabout") && encodeURI("http://unipro.ru/\nabout") !== "http://unipro.ru/%0aabout") {
     12  throw new Test262Error('#1: http://unipro.ru/\\nabout');
     13 }
     14 
     15 //CHECK#2
     16 if ((encodeURI("http://unipro.ru/\vabout") !== "http://unipro.ru/%0Babout") && encodeURI("http://unipro.ru/\vabout") !== "http://unipro.ru/%0babout") {
     17  throw new Test262Error('#2: http://unipro.ru/\\vabout');
     18 }
     19 
     20 //CHECK#3
     21 if ((encodeURI("http://unipro.ru/\fabout") !== "http://unipro.ru/%0Cabout") && encodeURI("http://unipro.ru/\fabout") !== "http://unipro.ru/%0cabout") {
     22  throw new Test262Error('#3: http://unipro.ru/\\fabout');
     23 }
     24 
     25 //CHECK#4
     26 if ((encodeURI("http://unipro.ru/\rabout") !== "http://unipro.ru/%0Dabout") && encodeURI("http://unipro.ru/\rabout") !== "http://unipro.ru/%0dabout") {
     27  throw new Test262Error('#4: http://unipro.ru/\\rabout');
     28 }
     29 
     30 reportCompare(0, 0);