tor-browser

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

S7.8.5_A1.3_T2.js (1012B)


      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 esid: prod-RegularExpressionNonTerminator
      6 info: |
      7  RegularExpressionBody ::
      8    RegularExpressionFirstChar RegularExpressionChars
      9 
     10  RegularExpressionChars ::
     11    [empty]
     12    RegularExpressionChars RegularExpressionChar
     13 
     14  RegularExpressionFirstChar ::
     15    RegularExpressionNonTerminator but not one of * or \ or / or [
     16 
     17  RegularExpressionNonTerminator ::
     18    SourceCharacter but not LineTerminator
     19 
     20 description: >
     21  The first character of a regular expression may not be a <LF> (\u000A), evaluated
     22 ---*/
     23 
     24 //CHECK#1
     25 try {
     26   eval("/\u000A/").source;
     27   throw new Test262Error('#1.1: RegularExpressionFirstChar :: Line Feed is incorrect. Actual: ' + (eval("/\u000A/").source));
     28 }
     29 catch (e) {
     30  if ((e instanceof SyntaxError) !== true) {
     31     throw new Test262Error('#1.2: RegularExpressionFirstChar :: Line Feed is incorrect. Actual: ' + (e));
     32  }
     33 }
     34 
     35 reportCompare(0, 0);