tor-browser

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

S7.8.3_A3.4_T4.js (1156B)


      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: "DecimalLiteral :: DecimalIntegerLiteral. DecimalDigigts ExponentPart"
      6 es5id: 7.8.3_A3.4_T4
      7 description: "ExponentPart :: E -DecimalDigits"
      8 ---*/
      9 
     10 //CHECK#0
     11 if (0.0E-1 !== 0) {
     12  throw new Test262Error('#0: 0.0E-1 === 0');
     13 }
     14 
     15 //CHECK#1
     16 if (1.1E-1 !== 0.11) {
     17  throw new Test262Error('#1: 1.1E-1 === 0.11');
     18 }
     19 
     20 //CHECK#2
     21 if (2.2E-1 !== 0.22) {
     22  throw new Test262Error('#2: 2.2E-1 === 0.22');
     23 }
     24 
     25 //CHECK#3
     26 if (3.3E-1 !== 0.33) {
     27  throw new Test262Error('#3: 3.3E-1 === 0.33');
     28 }
     29 
     30 //CHECK#4
     31 if (4.4E-1 !== 0.44) {
     32  throw new Test262Error('#4: 4.4E-1 === 0.44');
     33 }
     34 
     35 //CHECK#5
     36 if (5.5E-1 !== 0.55) {
     37  throw new Test262Error('#5: 5.5E-1 === 0.55');
     38 }
     39 
     40 //CHECK#6
     41 if (6.6E-1 !== 0.66) {
     42  throw new Test262Error('#6: 6.E-1 === 0.66');
     43 }
     44 
     45 //CHECK#7
     46 if (7.7E-1 !== 0.77) {
     47  throw new Test262Error('#7: 7.7E-1 === 0.77');
     48 }
     49 
     50 //CHECK#8
     51 if (8.8E-1 !== 0.88) {
     52  throw new Test262Error('#8: 8.8E-1 === 0.88');
     53 }
     54 
     55 //CHECK#9
     56 if (9.9E-1 !== 0.99) {
     57  throw new Test262Error('#9: 9.9E-1 === 0.99');
     58 }
     59 
     60 reportCompare(0, 0);