tor-browser

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

S15.10.2.3_A1_T5.js (721B)


      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 | regular expression operator separates two alternatives.
      7    The pattern first tries to match the left Alternative (followed by the sequel of the regular expression).
      8    If it fails, it tries to match the right Disjunction (followed by the sequel of the regular expression)
      9 es5id: 15.10.2.3_A1_T5
     10 description: >
     11    Execute /\d{3}|[a-z]{4}/.test("2, 12 and 23 AND 0.00.1") and check
     12    results
     13 ---*/
     14 
     15 var __executed = /\d{3}|[a-z]{4}/.test("2, 12 and 23 AND 0.00.1");
     16 
     17 assert(!__executed, 'The value of !__executed is expected to be true');
     18 
     19 reportCompare(0, 0);