tor-browser

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

S15.1.3.1_A4_T2.js (1126B)


      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 RUSSIAN ALPHABET
      8 ---*/
      9 
     10 //CHECK#1
     11 if (decodeURI("http://ru.wikipedia.org/wiki/%d0%ae%D0%bd%D0%B8%D0%BA%D0%BE%D0%B4") !== "http://ru.wikipedia.org/wiki/Юникод") {
     12  throw new Test262Error('#1: http://ru.wikipedia.org/wiki/Юникод');
     13 }
     14 
     15 //CHECK#2
     16 if (decodeURI("http://ru.wikipedia.org/wiki/%D0%AE%D0%BD%D0%B8%D0%BA%D0%BE%D0%B4#%D0%A1%D1%81%D1%8B%D0%BB%D0%BA%D0%B8") !== "http://ru.wikipedia.org/wiki/Юникод#Ссылки") {
     17  throw new Test262Error('#2: http://ru.wikipedia.org/wiki/Юникод#Ссылки');
     18 }
     19 
     20 //CHECK#3
     21 if (decodeURI("http://ru.wikipedia.org/wiki/%D0%AE%D0%BD%D0%B8%D0%BA%D0%BE%D0%B4%23%D0%92%D0%B5%D1%80%D1%81%D0%B8%D0%B8%20%D0%AE%D0%BD%D0%B8%D0%BA%D0%BE%D0%B4%D0%B0") !== "http://ru.wikipedia.org/wiki/Юникод%23Версии Юникода") {
     22  throw new Test262Error('#3: http://ru.wikipedia.org/wiki/Юникод%23Версии Юникода');
     23 }
     24 
     25 reportCompare(0, 0);