summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/JSON/small-codepoints.js
blob: 6afa5f8ce8c89e523dd86f6463647e7814c84aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

var gTestfile = 'small-codepoints.js';
//-----------------------------------------------------------------------------
var BUGNUMBER = 554079;
var summary = 'JSON.parse should reject U+0000 through U+001F';

print(BUGNUMBER + ": " + summary);

/**************
 * BEGIN TEST *
 **************/

for (var i = 0; i <= 0x1F; i++)
  testJSON('["a' + String.fromCharCode(i) + 'c"]', true);