tor-browser

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

S15.5.2.1_A1_T9.js (1666B)


      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    When "String" is called as part of a new expression, it is a constructor: it initialises the newly created object and
      7    The [[Value]] property of the newly constructed object is set to ToString(value), or to the empty string if value is not supplied
      8 es5id: 15.5.2.1_A1_T9
      9 description: >
     10    Creating string object with "new String(function(){return
     11    [1,2,3]}())"
     12 ---*/
     13 
     14 var __str = new String(function() {
     15  return [1, 2, 3]
     16 }());
     17 
     18 //////////////////////////////////////////////////////////////////////////////
     19 //CHECK#1
     20 if (typeof __str !== "object") {
     21  throw new Test262Error('#1: __str = new String(function(){return [1,2,3]}()); typeof __str === "object". Actual: typeof __str ===' + typeof __str);
     22 }
     23 //
     24 //////////////////////////////////////////////////////////////////////////////
     25 
     26 //////////////////////////////////////////////////////////////////////////////
     27 //CHECK#1.5
     28 if (__str.constructor !== String) {
     29  throw new Test262Error('#1.5: __str = new String(function(){return [1,2,3]}()); __str.constructor === String. Actual: __str.constructor ===' + __str.constructor);
     30 }
     31 //
     32 //////////////////////////////////////////////////////////////////////////////
     33 
     34 //////////////////////////////////////////////////////////////////////////////
     35 //CHECK#2
     36 if (__str != "1,2,3") {
     37  throw new Test262Error('#2: __str = new String(function(){return [1,2,3]}()); __str =="1,2,3". Actual: __str ==' + __str);
     38 }
     39 //
     40 //////////////////////////////////////////////////////////////////////////////
     41 
     42 reportCompare(0, 0);