mirror of https://github.com/tc39/test262.git
15 lines
511 B
JavaScript
15 lines
511 B
JavaScript
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es5id: 15.12.1.1-0-7
|
|
description: >
|
|
other category z spaces are not valid JSON whitespace as specified
|
|
by the production JSONWhitespace.
|
|
---*/
|
|
|
|
assert.throws(SyntaxError, function() {
|
|
// the following should produce a syntax error
|
|
JSON.parse('\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u30001234');
|
|
});
|