tor-browser

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

15.10.2.15-6-1.js (446B)


      1 // Copyright (c) 2012 Ecma International.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es5id: 15.10.2.15-6-1
      6 description: >
      7    Pattern - SyntaxError was thrown when one character in CharSet 'A'
      8    greater than one character in CharSet 'B' (15.10.2.15
      9    CharacterRange step 6)
     10 ---*/
     11 
     12 assert.throws(SyntaxError, function() {
     13  var regExp = new RegExp("^[z-a]$");
     14 });
     15 
     16 reportCompare(0, 0);