tor-browser

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

S9.7_A2.2.js (2827B)


      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: Compute result modulo 2^16
      6 es5id: 9.7_A2.2
      7 description: >
      8    For testing use String.fromCharCode(Number).charCodeAt(0)
      9    construction
     10 ---*/
     11 
     12 // CHECK#1
     13 if (String.fromCharCode(-32767).charCodeAt(0) !== 32769) {
     14  throw new Test262Error('#1: String.fromCharCode(-32767).charCodeAt(0) === 32769. Actual: ' + (String.fromCharCode(-32767).charCodeAt(0)));
     15 }
     16 
     17 // CHECK#2
     18 if (String.fromCharCode(-32768).charCodeAt(0) !== 32768) {
     19  throw new Test262Error('#2: String.fromCharCode(-32768).charCodeAt(0) === 32768. Actual: ' + (String.fromCharCode(-32768).charCodeAt(0)));
     20 }
     21 
     22 // CHECK#3
     23 if (String.fromCharCode(-32769).charCodeAt(0) !== 32767) {
     24  throw new Test262Error('#3: String.fromCharCode(-32769).charCodeAt(0) === 32767. Actual: ' + (String.fromCharCode(-32769).charCodeAt(0)));
     25 }
     26 
     27 // CHECK#4
     28 if (String.fromCharCode(-65535).charCodeAt(0) !== 1) {
     29  throw new Test262Error('#4: String.fromCharCode(-65535).charCodeAt(0) === 1. Actual: ' + (String.fromCharCode(-65535).charCodeAt(0)));
     30 }
     31 
     32 // CHECK#5
     33 if (String.fromCharCode(-65536).charCodeAt(0) !== 0) {
     34  throw new Test262Error('#5: String.fromCharCode(-65536).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(-65536).charCodeAt(0)));
     35 }
     36 
     37 // CHECK#6
     38 if (String.fromCharCode(-65537).charCodeAt(0) !== 65535) {
     39  throw new Test262Error('#6: String.fromCharCode(-65537).charCodeAt(0) === 65535. Actual: ' + (String.fromCharCode(-65537).charCodeAt(0)));
     40 }
     41 
     42 // CHECK#7
     43 if (String.fromCharCode(65535).charCodeAt(0) !== 65535) {
     44  throw new Test262Error('#7: String.fromCharCode(65535).charCodeAt(0) === 65535. Actual: ' + (String.fromCharCode(65535).charCodeAt(0)));
     45 }
     46 
     47 // CHECK#8
     48 if (String.fromCharCode(65536).charCodeAt(0) !== 0) {
     49  throw new Test262Error('#8: String.fromCharCode(65536).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(65536).charCodeAt(0)));
     50 }
     51 
     52 // CHECK#9
     53 if (String.fromCharCode(65537).charCodeAt(0) !== 1) {
     54  throw new Test262Error('#9: String.fromCharCode(65537).charCodeAt(0) === 1. Actual: ' + (String.fromCharCode(65537).charCodeAt(0)));
     55 }
     56 
     57 // CHECK#10
     58 if (String.fromCharCode(131071).charCodeAt(0) !== 65535) {
     59  throw new Test262Error('#10: String.fromCharCode(131071).charCodeAt(0) === 65535. Actual: ' + (String.fromCharCode(131071).charCodeAt(0)));
     60 }
     61 
     62 // CHECK#11
     63 if (String.fromCharCode(131072).charCodeAt(0) !== 0) {
     64  throw new Test262Error('#11: String.fromCharCode(131072).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(131072).charCodeAt(0)));
     65 }
     66 
     67 // CHECK#12
     68 if (String.fromCharCode(131073).charCodeAt(0) !== 1) {
     69  throw new Test262Error('#12: String.fromCharCode(131073).charCodeAt(0) === 1. Actual: ' + (String.fromCharCode(131073).charCodeAt(0)));
     70 }
     71 
     72 reportCompare(0, 0);