tor-browser

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

S7.8.4_A4.2_T6.js (2230B)


      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: "CharacterEscapeSequnce :: NonEscapeSequence"
      6 es5id: 7.8.4_A4.2_T6
      7 description: "NonEscapeSequence :: RUSSIAN CAPITAL ALPHABET"
      8 ---*/
      9 
     10 //CHECK#А-Я
     11 
     12 if ("А" !== "\А") {
     13  throw new Test262Error('#А');
     14 }
     15 
     16 if ("Б" !== "\Б") {
     17  throw new Test262Error('#Б');
     18 }
     19 
     20 if ("В" !== "\В") {
     21  throw new Test262Error('#В');
     22 }
     23 
     24 if ("Г" !== "\Г") {
     25  throw new Test262Error('#Г');
     26 }
     27 
     28 if ("Д" !== "\Д") {
     29  throw new Test262Error('#Д');
     30 }
     31 
     32 if ("Е" !== "\Е") {
     33  throw new Test262Error('#Е');
     34 }
     35 
     36 if ("Ж" !== "\Ж") {
     37  throw new Test262Error('#Ж');
     38 }
     39 
     40 if ("З" !== "\З") {
     41  throw new Test262Error('#З');
     42 }
     43 
     44 if ("И" !== "\И") {
     45  throw new Test262Error('#И');
     46 }
     47 
     48 if ("Й" !== "\Й") {
     49  throw new Test262Error('#Й');
     50 }
     51 
     52 if ("К" !== "\К") {
     53  throw new Test262Error('#К');
     54 }
     55 
     56 if ("Л" !== "\Л") {
     57  throw new Test262Error('#Л');
     58 }
     59 
     60 if ("М" !== "\М") {
     61  throw new Test262Error('#М');
     62 }
     63 
     64 if ("Н" !== "\Н") {
     65  throw new Test262Error('#Н');
     66 }
     67 
     68 if ("О" !== "\О") {
     69  throw new Test262Error('#О');
     70 }
     71 
     72 if ("П" !== "\П") {
     73  throw new Test262Error('#П');
     74 }
     75 
     76 if ("Р" !== "\Р") {
     77  throw new Test262Error('#Р');
     78 }
     79 
     80 if ("С" !== "\С") {
     81  throw new Test262Error('#С');
     82 }
     83 
     84 if ("Т" !== "\Т") {
     85  throw new Test262Error('#Т');
     86 }
     87 
     88 if ("У" !== "\У") {
     89  throw new Test262Error('#У');
     90 }
     91 
     92 if ("Ф" !== "\Ф") {
     93  throw new Test262Error('#Ф');
     94 }
     95 
     96 if ("Х" !== "\Х") {
     97  throw new Test262Error('#Х');
     98 }
     99 
    100 if ("Ц" !== "\Ц") {
    101  throw new Test262Error('#Ц');
    102 }
    103 
    104 if ("Ч" !== "\Ч") {
    105  throw new Test262Error('#Ч');
    106 }
    107 
    108 if ("Ш" !== "\Ш") {
    109  throw new Test262Error('#Ш');
    110 }
    111 
    112 if ("Щ" !== "\Щ") {
    113  throw new Test262Error('#Щ');
    114 }
    115 
    116 if ("Ъ" !== "\Ъ") {
    117  throw new Test262Error('#Ъ');
    118 }
    119 
    120 if ("Ы" !== "\Ы") {
    121  throw new Test262Error('#Ы');
    122 }
    123 
    124 if ("Ь" !== "\Ь") {
    125  throw new Test262Error('#Ь');
    126 }
    127 
    128 if ("Э" !== "\Э") {
    129  throw new Test262Error('#Э');
    130 }
    131 
    132 if ("Ю" !== "\Ю") {
    133  throw new Test262Error('#Ю');
    134 }
    135 
    136 if ("Я" !== "\Я") {
    137  throw new Test262Error('#Я');
    138 }
    139 
    140 if ("Ё" !== "\Ё") {
    141  throw new Test262Error('#Ё');
    142 }
    143 
    144 reportCompare(0, 0);