Skip to content
Snippets Groups Projects
Commit d7c8a12e authored by Mathias Bynens's avatar Mathias Bynens Committed by Leo Balter
Browse files

Remove invalid line terminator tests (#2044)

parent 4f1155c5
No related branches found
No related tags found
No related merge requests found
// Copyright 2019 Mike Pennisi. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: LINE SEPARATOR (U+2028) within strings is not allowed
es5id: 7.3_A2.2_T1
esid: sec-line-terminators
description: Insert LINE SEPARATOR (\u2028) into string
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
''
// Copyright 2019 Mike Pennisi. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: PARAGRAPH SEPARATOR (U+2029) within strings is not allowed
es5id: 7.3_A2.2_T1
esid: sec-line-terminators
description: Insert PARAGRAPH SEPARATOR (\u2029) into string
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
''
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment