tor-browser

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

S9.7_A2.1.js (2255B)


      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: ToUint16 returns values between 0 and 2^16-1
      6 es5id: 9.7_A2.1
      7 description: >
      8    Converting numbers, which are in\outside of Uint16 scopes, with
      9    String.fromCharCode(Number).charCodeAt(0) construction
     10 ---*/
     11 
     12 // CHECK#1
     13 if (String.fromCharCode(0).charCodeAt(0) !== 0) {
     14  throw new Test262Error('#1: String.fromCharCode(0).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(0).charCodeAt(0)));
     15 }
     16 
     17 // CHECK#2
     18 if (String.fromCharCode(1).charCodeAt(0) !== 1) {
     19  throw new Test262Error('#2: String.fromCharCode(1).charCodeAt(0) === 1. Actual: ' + (String.fromCharCode(1).charCodeAt(0)));
     20 }
     21 
     22 // CHECK#3
     23 if (String.fromCharCode(-1).charCodeAt(0) !== 65535) {
     24  throw new Test262Error('#3: String.fromCharCode(-1).charCodeAt(0) === 65535. Actual: ' + (String.fromCharCode(-1).charCodeAt(0)));
     25 }
     26 
     27 // CHECK#4
     28 if (String.fromCharCode(65535).charCodeAt(0) !== 65535) {
     29  throw new Test262Error('#4: String.fromCharCode(65535).charCodeAt(0) === 65535. Actual: ' + (String.fromCharCode(65535).charCodeAt(0)));
     30 }
     31 
     32 // CHECK#5
     33 if (String.fromCharCode(65534).charCodeAt(0) !== 65534) {
     34  throw new Test262Error('#5: String.fromCharCode(65534).charCodeAt(0) === 65534. Actual: ' + (String.fromCharCode(65534).charCodeAt(0)));
     35 }
     36 
     37 // CHECK#6
     38 if (String.fromCharCode(65536).charCodeAt(0) !== 0) {
     39  throw new Test262Error('#6: String.fromCharCode(65536).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(65536).charCodeAt(0)));
     40 }
     41 
     42 // CHECK#7
     43 if (String.fromCharCode(4294967295).charCodeAt(0) !== 65535) {
     44  throw new Test262Error('#7: String.fromCharCode(4294967295).charCodeAt(0) === 65535. Actual: ' + (String.fromCharCode(4294967295).charCodeAt(0)));
     45 }
     46 
     47 // CHECK#8
     48 if (String.fromCharCode(4294967294).charCodeAt(0) !== 65534) {
     49  throw new Test262Error('#8: String.fromCharCode(4294967294).charCodeAt(0) === 65534. Actual: ' + (String.fromCharCode(4294967294).charCodeAt(0)));
     50 }
     51 
     52 // CHECK#9
     53 if (String.fromCharCode(4294967296).charCodeAt(0) !== 0) {
     54  throw new Test262Error('#9: String.fromCharCode(4294967296).charCodeAt(0) === 0. Actual: ' + (String.fromCharCode(4294967296).charCodeAt(0)));
     55 }
     56 
     57 reportCompare(0, 0);