tor-browser

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

S11.7.3_A2.1_T1.js (1246B)


      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 x >>> y uses GetValue
      6 es5id: 11.7.3_A2.1_T1
      7 description: Either Type is not Reference or GetBase is not null
      8 ---*/
      9 
     10 //CHECK#1
     11 if (-4 >>> 1 !== 2147483646) {
     12  throw new Test262Error('#1: -4 >>> 1 === 2147483646. Actual: ' + (-4 >>> 1));
     13 }
     14 
     15 //CHECK#2
     16 var x = -4;
     17 if (x >>> 1 !== 2147483646) {
     18  throw new Test262Error('#2: var x = -4; x >>> 1 === 2147483646. Actual: ' + (x >>> 1));
     19 }
     20 
     21 //CHECK#3
     22 var y = 1;
     23 if (-4 >>> y !== 2147483646) {
     24  throw new Test262Error('#3: var y = 1; -4 >>> y === 2147483646. Actual: ' + (-4 >>> y));
     25 }
     26 
     27 //CHECK#4
     28 var x = -4;
     29 var y = 1;
     30 if (x >>> y !== 2147483646) {
     31  throw new Test262Error('#4: var x = -4; var y = 1; x >>> y === 2147483646. Actual: ' + (x >>> y));
     32 }
     33 
     34 //CHECK#5
     35 var objectx = new Object();
     36 var objecty = new Object();
     37 objectx.prop = -4;
     38 objecty.prop = 1;
     39 if (objectx.prop >>> objecty.prop !== 2147483646) {
     40  throw new Test262Error('#5: var objectx = new Object(); var objecty = new Object(); objectx.prop = -4; objecty.prop = 1; objectx.prop >>> objecty.prop === 2147483646. Actual: ' + (objectx.prop >>> objecty.prop));
     41 }
     42 
     43 reportCompare(0, 0);