tor-browser

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

S15.10.2.7_A6_T2.js (571B)


      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 :: { DecimalDigits , }evaluates as follows:
      7    i) Let i be the MV of DecimalDigits
      8    ii) Return the two results i and \infty
      9 es5id: 15.10.2.7_A6_T2
     10 description: Execute /b{8,}c/.test("aaabbbbcccddeeeefffff") and check results
     11 ---*/
     12 
     13 var __executed = /b{8,}c/.test("aaabbbbcccddeeeefffff");
     14 
     15 assert(!__executed, 'The value of !__executed is expected to be true');
     16 
     17 reportCompare(0, 0);