tor-browser

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

S7.8.5_A4.1.js (531B)


      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    A regular expression literal is an input element that is converted to
      7    a RegExp object when it is scanned
      8 es5id: 7.8.5_A4.1
      9 description: "Check ((/(?:)/ instanceof RegExp) === true)"
     10 ---*/
     11 
     12 //CHECK#1
     13 if ((/(?:)/ instanceof RegExp) !== true) {
     14  throw new Test262Error('#1: (/(?:)/ instanceof RegExp) === true. Actual: ' + ((/(?:)/ instanceof RegExp)));
     15 }
     16 
     17 reportCompare(0, 0);