tor-browser

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

S9.7_A3.2_T1.js (734B)


      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: Operator uses floor, abs
      6 es5id: 9.7_A3.2_T1
      7 description: >
      8    For testing use String.fromCharCode(Number).charCodeAt(0)
      9    construction
     10 ---*/
     11 
     12 // CHECK#1
     13 if (String.fromCharCode(1.2345).charCodeAt(0) !== 1) {
     14  throw new Test262Error('#1: String.fromCharCode(1.2345).charCodeAt(0) === 1. Actual: ' + (String.fromCharCode(1.2345).charCodeAt(0)));
     15 }
     16 
     17 // CHECK#2
     18 if (String.fromCharCode(-5.4321).charCodeAt(0) !== 65531) {
     19  throw new Test262Error('#2: String.fromCharCode(-5.4321).charCodeAt(0) === 65531. Actual: ' + (String.fromCharCode(-5.4321).charCodeAt(0)));
     20 }
     21 
     22 reportCompare(0, 0);