tor-browser

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

15.12.1.1-g1-1.js (489B)


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