tor-browser

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

S15.1.3.2_A4_T3.js (911B)


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