tor-browser

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

S11.8.4_A3.2_T1.2.js (1320B)


      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: |
      6    Operator x >= y returns ToString(x) >= ToString(y), if Type(Primitive(x))
      7    is String and Type(Primitive(y)) is String
      8 es5id: 11.8.4_A3.2_T1.2
      9 description: >
     10    Type(Primitive(x)) and Type(Primitive(y)) vary between Object
     11    object and Function object
     12 ---*/
     13 
     14 //CHECK#1
     15 if (({} >= function(){return 1}) !== ({}.toString() >= function(){return 1}.toString())) {
     16  throw new Test262Error('#1: ({} >= function(){return 1}) === ({}.toString() >= function(){return 1}.toString())');
     17 }
     18 
     19 //CHECK#2
     20 if ((function(){return 1} >= {}) !== (function(){return 1}.toString() >= {}.toString())) {
     21  throw new Test262Error('#2: (function(){return 1} >= {}) === (function(){return 1}.toString() >= {}.toString())');
     22 }
     23 
     24 //CHECK#3
     25 if ((function(){return 1} >= function(){return 1}) !== (function(){return 1}.toString() >= function(){return 1}.toString())) {
     26  throw new Test262Error('#3: (function(){return 1} >= function(){return 1}) === (function(){return 1}.toString() >= function(){return 1}.toString())');
     27 }
     28 
     29 //CHECK#4
     30 if (({} >= {}) !== ({}.toString() >= {}.toString())) {
     31  throw new Test262Error('#4: ({} >= {}) === ({}.toString() >= {}.toString())');
     32 }
     33 
     34 reportCompare(0, 0);