tor-browser

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

between-tokens-ps.js (399B)


      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: PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens
      6 esid: sec-line-terminators
      7 es5id: 7.3_A1.4
      8 description: Insert PARAGRAPH SEPARATOR (\u2029) between tokens of var x=1
      9 ---*/
     10 
     11 varx=1;
     12 
     13 assert.sameValue(x, 1);
     14 
     15 reportCompare(0, 0);