tor-browser

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

15.12.1.1-g1-2.js (486B)


      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.12.1.1-g1-2
      6 description: The JSON lexical grammar treats <CR> as a whitespace character
      7 ---*/
      8 
      9 assert.sameValue(JSON.parse('\r1234'), 1234, '<cr> should be ignored');
     10 
     11 assert.throws(SyntaxError, function() {
     12    JSON.parse('12\r34');
     13 }, '<CR> should produce a syntax error as whitespace results in two tokens');
     14 
     15 reportCompare(0, 0);