tor-browser

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

S15.10.4.1_A8_T6.js (673B)


      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: let P be ToString(pattern) and let F be ToString(flags)
      6 es5id: 15.10.4.1_A8_T6
      7 description: >
      8    Pattern is {toString:function(){throw "intostr";} } and flags is
      9    "i"
     10 ---*/
     11 
     12 try {
     13    throw new Test262Error('#1.1: new RegExp({toString:function(){throw "intostr";}}, "i") throw "intostr". Actual: ' + (new RegExp({toString:function(){throw "intostr";}}, "i")));
     14 } catch (e) {
     15  assert.sameValue(e, "intostr", 'The value of e is expected to be "intostr"');
     16 }
     17 
     18 // TODO: Convert to assert.throws() format.
     19 
     20 reportCompare(0, 0);