tor-browser

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

S15.1.3.4_A4_T3.js (1304B)


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