tor-browser

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

15.12.1.1-g4-3.js (506B)


      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-g4-3
      6 description: >
      7    The JSON lexical grammar does not allow a JSONStringCharacter to
      8    be any of the Unicode characters U+0010 thru U+0017
      9 ---*/
     10 
     11 assert.throws(SyntaxError, function() {
     12    JSON.parse('"\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017"'); // invalid string characters should produce a syntax error
     13 });
     14 
     15 reportCompare(0, 0);