tor-browser

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

S15.10.2.7_A4_T8.js (534B)


      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    The production QuantifierPrefix :: * evaluates by returning the two
      7    results 0 and \infty
      8 es5id: 15.10.2.7_A4_T8
      9 description: >
     10    Execute /["'][^"']*["']/.test('alice cries out: don\'t') and check
     11    results
     12 ---*/
     13 
     14 var __executed = /["'][^"']*["']/.test('alice cries out: don\'t');
     15 
     16 assert(!__executed, 'The value of !__executed is expected to be true');
     17 
     18 reportCompare(0, 0);