Add path attribute.

This commit is contained in:
Brian Terlson 2014-07-24 15:41:42 -07:00
parent d4354d14d5
commit 0defa37385
11733 changed files with 11751 additions and 19 deletions

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 6.1
description: Test for handling of supplementary characters description: Test for handling of supplementary characters
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: HORIZONTAL TAB (U+0009) between any two tokens is allowed info: HORIZONTAL TAB (U+0009) between any two tokens is allowed
es5id: 7.2_A1.1_T1
description: Insert HORIZONTAL TAB(\u0009 and \t) between tokens of var x=1 description: Insert HORIZONTAL TAB(\u0009 and \t) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: HORIZONTAL TAB (U+0009) between any two tokens is allowed info: HORIZONTAL TAB (U+0009) between any two tokens is allowed
es5id: 7.2_A1.1_T2
description: Insert real HORIZONTAL TAB between tokens of var x=1 description: Insert real HORIZONTAL TAB between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: VERTICAL TAB (U+000B) between any two tokens is allowed info: VERTICAL TAB (U+000B) between any two tokens is allowed
es5id: 7.2_A1.2_T1
description: Insert VERTICAL TAB(\u000B and \v) between tokens of var x=1 description: Insert VERTICAL TAB(\u000B and \v) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: VERTICAL TAB (U+000B) between any two tokens is allowed info: VERTICAL TAB (U+000B) between any two tokens is allowed
es5id: 7.2_A1.2_T2
description: Insert real VERTICAL TAB between tokens of var x=1 description: Insert real VERTICAL TAB between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: FORM FEED (U+000C) between any two tokens is allowed info: FORM FEED (U+000C) between any two tokens is allowed
es5id: 7.2_A1.3_T1
description: Insert FORM FEED(\u000C and \f) between tokens of var x=1 description: Insert FORM FEED(\u000C and \f) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: FORM FEED (U+000C) between any two tokens is allowed info: FORM FEED (U+000C) between any two tokens is allowed
es5id: 7.2_A1.3_T2
description: Insert real FORM FEED between tokens of var x=1 description: Insert real FORM FEED between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: SPACE (U+0020) between any two tokens is allowed info: SPACE (U+0020) between any two tokens is allowed
es5id: 7.2_A1.4_T1
description: Insert SPACE(\u0020) between tokens of var x=1 description: Insert SPACE(\u0020) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: SPACE (U+0020) between any two tokens is allowed info: SPACE (U+0020) between any two tokens is allowed
es5id: 7.2_A1.4_T2
description: Insert real SPACE between tokens of var x=1 description: Insert real SPACE between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: NO-BREAK SPACE (U+00A0) between any two tokens is allowed info: NO-BREAK SPACE (U+00A0) between any two tokens is allowed
es5id: 7.2_A1.5_T1
description: Insert NO-BREAK SPACE(\u00A0) between tokens of var x=1 description: Insert NO-BREAK SPACE(\u00A0) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: NO-BREAK SPACE (U+00A0) between any two tokens is allowed info: NO-BREAK SPACE (U+00A0) between any two tokens is allowed
es5id: 7.2_A1.5_T2
description: Insert real NO-BREAK SPACE between tokens of var x=1 description: Insert real NO-BREAK SPACE between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: HORIZONTAL TAB (U+0009) may occur within strings info: HORIZONTAL TAB (U+0009) may occur within strings
es5id: 7.2_A2.1_T1
description: Use HORIZONTAL TAB(\u0009 and \t) description: Use HORIZONTAL TAB(\u0009 and \t)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: HORIZONTAL TAB (U+0009) may occur within strings info: HORIZONTAL TAB (U+0009) may occur within strings
es5id: 7.2_A2.1_T2
description: Use real HORIZONTAL TAB description: Use real HORIZONTAL TAB
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: VERTICAL TAB (U+000B) may occur within strings info: VERTICAL TAB (U+000B) may occur within strings
es5id: 7.2_A2.2_T1
description: Use VERTICAL TAB(\u000B and \v) description: Use VERTICAL TAB(\u000B and \v)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: VERTICAL TAB (U+000B) may occur within strings info: VERTICAL TAB (U+000B) may occur within strings
es5id: 7.2_A2.2_T2
description: Use real VERTICAL TAB description: Use real VERTICAL TAB
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: FORM FEED (U+000C) may occur within strings info: FORM FEED (U+000C) may occur within strings
es5id: 7.2_A2.3_T1
description: Use FORM FEED(\u000C and \f) description: Use FORM FEED(\u000C and \f)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: FORM FEED (U+000C) may occur within strings info: FORM FEED (U+000C) may occur within strings
es5id: 7.2_A2.3_T2
description: Use real FORM FEED description: Use real FORM FEED
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: SPACE (U+0020) may occur within strings info: SPACE (U+0020) may occur within strings
es5id: 7.2_A2.4_T1
description: Use SPACE(\u0020) description: Use SPACE(\u0020)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: SPACE (U+0020) may occur within strings info: SPACE (U+0020) may occur within strings
es5id: 7.2_A2.4_T2
description: Use real SPACE description: Use real SPACE
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: NO-BREAK SPACE (U+00A0) may occur within strings info: NO-BREAK SPACE (U+00A0) may occur within strings
es5id: 7.2_A2.5_T1
description: Use NO-BREAK SPACE(\u00A0) description: Use NO-BREAK SPACE(\u00A0)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: NO-BREAK SPACE (U+00A0) may occur within strings info: NO-BREAK SPACE (U+00A0) may occur within strings
es5id: 7.2_A2.5_T2
description: Use real NO-BREAK SPACE description: Use real NO-BREAK SPACE
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain HORIZONTAL TAB (U+0009) info: Single line comment can contain HORIZONTAL TAB (U+0009)
es5id: 7.2_A3.1_T1
description: Use HORIZONTAL TAB(\u0009) description: Use HORIZONTAL TAB(\u0009)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain HORIZONTAL TAB (U+0009) info: Single line comment can contain HORIZONTAL TAB (U+0009)
es5id: 7.2_A3.1_T2
description: Use real HORIZONTAL TAB description: Use real HORIZONTAL TAB
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain VERTICAL TAB (U+000B) info: Single line comment can contain VERTICAL TAB (U+000B)
es5id: 7.2_A3.2_T1
description: Use VERTICAL TAB(\u000B) description: Use VERTICAL TAB(\u000B)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain VERTICAL TAB (U+000B) info: Single line comment can contain VERTICAL TAB (U+000B)
es5id: 7.2_A3.2_T2
description: Use real VERTICAL TAB description: Use real VERTICAL TAB
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain FORM FEED (U+000C) info: Single line comment can contain FORM FEED (U+000C)
es5id: 7.2_A3.3_T1
description: Use FORM FEED(\u000C) description: Use FORM FEED(\u000C)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain FORM FEED (U+000C) info: Single line comment can contain FORM FEED (U+000C)
es5id: 7.2_A3.3_T2
description: Use real FORM FEED description: Use real FORM FEED
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain SPACE (U+0020) info: Single line comment can contain SPACE (U+0020)
es5id: 7.2_A3.4_T1
description: Use SPACE(\u0020) description: Use SPACE(\u0020)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain SPACE (U+0020) info: Single line comment can contain SPACE (U+0020)
es5id: 7.2_A3.4_T2
description: Use real SPACE description: Use real SPACE
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain NO-BREAK SPACE (U+00A0) info: Single line comment can contain NO-BREAK SPACE (U+00A0)
es5id: 7.2_A3.5_T1
description: Use NO-BREAK SPACE(\u00A0) description: Use NO-BREAK SPACE(\u00A0)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comment can contain NO-BREAK SPACE (U+00A0) info: Single line comment can contain NO-BREAK SPACE (U+00A0)
es5id: 7.2_A3.5_T2
description: Use real NO-BREAK SPACE description: Use real NO-BREAK SPACE
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain HORIZONTAL TAB (U+0009) info: Multi line comment can contain HORIZONTAL TAB (U+0009)
es5id: 7.2_A4.1_T1
description: Use HORIZONTAL TAB(\u0009) description: Use HORIZONTAL TAB(\u0009)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain HORIZONTAL TAB (U+0009) info: Multi line comment can contain HORIZONTAL TAB (U+0009)
es5id: 7.2_A4.1_T2
description: Use real HORIZONTAL TAB description: Use real HORIZONTAL TAB
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain VERTICAL TAB (U+000B) info: Multi line comment can contain VERTICAL TAB (U+000B)
es5id: 7.2_A4.2_T1
description: Use VERTICAL TAB(\u000B) description: Use VERTICAL TAB(\u000B)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain VERTICAL TAB (U+000B) info: Multi line comment can contain VERTICAL TAB (U+000B)
es5id: 7.2_A4.2_T2
description: Use real VERTICAL TAB description: Use real VERTICAL TAB
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain FORM FEED (U+000C) info: Multi line comment can contain FORM FEED (U+000C)
es5id: 7.2_A4.3_T1
description: Use FORM FEED(\u000C) description: Use FORM FEED(\u000C)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain FORM FEED (U+000C) info: Multi line comment can contain FORM FEED (U+000C)
es5id: 7.2_A4.3_T2
description: Use real FORM FEED description: Use real FORM FEED
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain SPACE (U+0020) info: Multi line comment can contain SPACE (U+0020)
es5id: 7.2_A4.4_T1
description: Use SPACE(\u0020) description: Use SPACE(\u0020)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain SPACE (U+0020) info: Multi line comment can contain SPACE (U+0020)
es5id: 7.2_A4.4_T2
description: Use real SPACE description: Use real SPACE
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain NO-BREAK SPACE (U+00A0) info: Multi line comment can contain NO-BREAK SPACE (U+00A0)
es5id: 7.2_A4.5_T1
description: Use NO-BREAK SPACE(\u00A0) description: Use NO-BREAK SPACE(\u00A0)
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain NO-BREAK SPACE (U+00A0) info: Multi line comment can contain NO-BREAK SPACE (U+00A0)
es5id: 7.2_A4.5_T2
description: Use real NO-BREAK SPACE description: Use real NO-BREAK SPACE
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
White space cannot be expressed as a Unicode escape sequence consisting White space cannot be expressed as a Unicode escape sequence consisting
of six characters, namely \u plus four hexadecimal digits of six characters, namely \u plus four hexadecimal digits
es5id: 7.2_A5_T1
description: Use TAB (U+0009) description: Use TAB (U+0009)
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
White space cannot be expressed as a Unicode escape sequence consisting White space cannot be expressed as a Unicode escape sequence consisting
of six characters, namely \u plus four hexadecimal digits of six characters, namely \u plus four hexadecimal digits
es5id: 7.2_A5_T2
description: Use VERTICAL TAB (U+000B) description: Use VERTICAL TAB (U+000B)
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
White space cannot be expressed as a Unicode escape sequence consisting White space cannot be expressed as a Unicode escape sequence consisting
of six characters, namely \u plus four hexadecimal digits of six characters, namely \u plus four hexadecimal digits
es5id: 7.2_A5_T3
description: Use FORM FEED (U+000C) description: Use FORM FEED (U+000C)
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
White space cannot be expressed as a Unicode escape sequence consisting White space cannot be expressed as a Unicode escape sequence consisting
of six characters, namely \u plus four hexadecimal digits of six characters, namely \u plus four hexadecimal digits
es5id: 7.2_A5_T4
description: Use SPACE (U+0020) description: Use SPACE (U+0020)
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
White space cannot be expressed as a Unicode escape sequence consisting White space cannot be expressed as a Unicode escape sequence consisting
of six characters, namely \u plus four hexadecimal digits of six characters, namely \u plus four hexadecimal digits
es5id: 7.2_A5_T5
description: Use NO-BREAK SPACE (U+00A0) description: Use NO-BREAK SPACE (U+00A0)
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-1
description: > description: >
7.3 - ES5 recognizes the character <LS> (\u2028) as line 7.3 - ES5 recognizes the character <LS> (\u2028) as line
terminators when parsing statements terminators when parsing statements

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-10
description: > description: >
7.3 - ES5 recognizes the character <PS> (\u2029) as a 7.3 - ES5 recognizes the character <PS> (\u2029) as a
NonEscapeCharacter NonEscapeCharacter

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-11
description: > description: >
7.3 - ES5 specifies that a multiline comment that contains a line 7.3 - ES5 specifies that a multiline comment that contains a line
terminator character <LS> (\u2028) must be treated as a single terminator character <LS> (\u2028) must be treated as a single

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-12
description: > description: >
7.3 - ES5 specifies that a multiline comment that contains a line 7.3 - ES5 specifies that a multiline comment that contains a line
terminator character <PS> (\u2029) must be treated as a single terminator character <PS> (\u2029) must be treated as a single

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-13
description: > description: >
7.3 - ES5 specifies that a multiline comment that contains a line 7.3 - ES5 specifies that a multiline comment that contains a line
terminator character <CR> (\u000D) must be treated as a single terminator character <CR> (\u000D) must be treated as a single

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-14
description: > description: >
7.3 - ES5 specifies that a multiline comment that contains a line 7.3 - ES5 specifies that a multiline comment that contains a line
terminator character <LF> (\u000A) must be treated as a single terminator character <LF> (\u000A) must be treated as a single

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-15
description: 7.3 - ES5 recognize <BOM> (\uFFFF) as a whitespace character description: 7.3 - ES5 recognize <BOM> (\uFFFF) as a whitespace character
includes: [runTestCase.js] includes: [runTestCase.js]
---*/ ---*/

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-2
description: > description: >
7.3 - ES5 recognizes the character <PS> (\u2029) as line 7.3 - ES5 recognizes the character <PS> (\u2029) as line
terminators when parsing statements terminators when parsing statements

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-3
description: > description: >
7.3 - ES5 recognizes the character <LS> (\u2028) as terminating 7.3 - ES5 recognizes the character <LS> (\u2028) as terminating
SingleLineComments SingleLineComments

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-4
description: > description: >
7.3 - ES5 recognizes the character <PS> (\u2029) as terminating 7.3 - ES5 recognizes the character <PS> (\u2029) as terminating
SingleLineComments SingleLineComments

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-5
description: > description: >
7.3 - ES5 recognizes the character <LS> (\u2028) as terminating 7.3 - ES5 recognizes the character <LS> (\u2028) as terminating
string literal string literal

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-6
description: > description: >
7.3 - ES5 recognizes the character <PS> (\u2029) as terminating 7.3 - ES5 recognizes the character <PS> (\u2029) as terminating
string literal string literal

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-7
description: > description: >
7.3 - ES5 recognizes the character <LS> (\u2028) as terminating 7.3 - ES5 recognizes the character <LS> (\u2028) as terminating
regular expression literals regular expression literals

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-8
description: > description: >
7.3 - ES5 recognizes the character <PS> (\u2029) as terminating 7.3 - ES5 recognizes the character <PS> (\u2029) as terminating
regular expression literals regular expression literals

View File

@ -5,6 +5,7 @@
// copyright and this notice and otherwise comply with the Use Terms. // copyright and this notice and otherwise comply with the Use Terms.
/*--- /*---
es5id: 7.3-9
description: > description: >
7.3 - ES5 recognizes the character <LS> (\u2028) as a 7.3 - ES5 recognizes the character <LS> (\u2028) as a
NonEscapeCharacter NonEscapeCharacter

View File

@ -3,6 +3,7 @@
/*--- /*---
info: LINE FEED (U+000A) may occur between any two tokens info: LINE FEED (U+000A) may occur between any two tokens
es5id: 7.3_A1.1_T1
description: Insert LINE FEED (\u000A and \n) between tokens of var x=1 description: Insert LINE FEED (\u000A and \n) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: LINE FEED (U+000A) may occur between any two tokens info: LINE FEED (U+000A) may occur between any two tokens
es5id: 7.3_A1.1_T2
description: Insert real LINE FEED between tokens of var x=1 description: Insert real LINE FEED between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: CARRIAGE RETURN (U+000D) may occur between any two tokens info: CARRIAGE RETURN (U+000D) may occur between any two tokens
es5id: 7.3_A1.2_T1
description: Insert CARRIAGE RETURN (\u000D and \r) between tokens of var x=1 description: Insert CARRIAGE RETURN (\u000D and \r) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: CARRIAGE RETURN (U+000D) may occur between any two tokens info: CARRIAGE RETURN (U+000D) may occur between any two tokens
es5id: 7.3_A1.2_T2
description: Insert real CARRIAGE RETURN between tokens of var x=1 description: Insert real CARRIAGE RETURN between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: LINE SEPARATOR (U+2028) may occur between any two tokens info: LINE SEPARATOR (U+2028) may occur between any two tokens
es5id: 7.3_A1.3
description: Insert LINE SEPARATOR (\u2028) between tokens of var x=1 description: Insert LINE SEPARATOR (\u2028) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens info: PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens
es5id: 7.3_A1.4
description: Insert PARAGRAPH SEPARATOR (\u2029) between tokens of var x=1 description: Insert PARAGRAPH SEPARATOR (\u2029) between tokens of var x=1
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: LINE FEED (U+000A) within strings is not allowed info: LINE FEED (U+000A) within strings is not allowed
es5id: 7.3_A2.1_T1
description: Insert LINE FEED (\u000A) into string description: Insert LINE FEED (\u000A) into string
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: LINE FEED (U+000A) within strings is not allowed info: LINE FEED (U+000A) within strings is not allowed
es5id: 7.3_A2.1_T2
description: Use real LINE FEED into string description: Use real LINE FEED into string
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: CARRIAGE RETURN (U+000D) within strings is not allowed info: CARRIAGE RETURN (U+000D) within strings is not allowed
es5id: 7.3_A2.2_T1
description: Insert CARRIAGE RETURN (\u000D) into string description: Insert CARRIAGE RETURN (\u000D) into string
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: CARRIAGE RETURN (U+000D) within strings is not allowed info: CARRIAGE RETURN (U+000D) within strings is not allowed
es5id: 7.3_A2.2_T2
description: Insert real CARRIAGE RETURN into string description: Insert real CARRIAGE RETURN into string
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: LINE SEPARATOR (U+2028) within strings is not allowed info: LINE SEPARATOR (U+2028) within strings is not allowed
es5id: 7.3_A2.3
description: Insert LINE SEPARATOR (\u2028) into string description: Insert LINE SEPARATOR (\u2028) into string
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: PARAGRAPH SEPARATOR (U+2029) within strings is not allowed info: PARAGRAPH SEPARATOR (U+2029) within strings is not allowed
es5id: 7.3_A2.4
description: Insert PARAGRAPH SEPARATOR (\u2029) into string description: Insert PARAGRAPH SEPARATOR (\u2029) into string
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain LINE FEED (U+000A) inside info: Single line comments can not contain LINE FEED (U+000A) inside
es5id: 7.3_A3.1_T1
description: Insert LINE FEED (\u000A) into single line comment description: Insert LINE FEED (\u000A) into single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain LINE FEED (U+000A) inside info: Single line comments can not contain LINE FEED (U+000A) inside
es5id: 7.3_A3.1_T2
description: Insert LINE FEED (\u000A) into begin of single line comment description: Insert LINE FEED (\u000A) into begin of single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain LINE FEED (U+000A) inside info: Single line comments can not contain LINE FEED (U+000A) inside
es5id: 7.3_A3.1_T3
description: Insert real LINE FEED into single line comment description: Insert real LINE FEED into single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside
es5id: 7.3_A3.2_T1
description: Insert CARRIAGE RETURN (\u000D) into single line comment description: Insert CARRIAGE RETURN (\u000D) into single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside
es5id: 7.3_A3.2_T2
description: Insert CARRIAGE RETURN (\u000D) into begin of single line comment description: Insert CARRIAGE RETURN (\u000D) into begin of single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside
es5id: 7.3_A3.2_T3
description: Insert real CARRIAGE RETURN into single line comment description: Insert real CARRIAGE RETURN into single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain LINE SEPARATOR (U+2028) inside info: Single line comments can not contain LINE SEPARATOR (U+2028) inside
es5id: 7.3_A3.3_T1
description: Insert LINE SEPARATOR (\u2028) into single line comment description: Insert LINE SEPARATOR (\u2028) into single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain LINE SEPARATOR (U+2028) inside info: Single line comments can not contain LINE SEPARATOR (U+2028) inside
es5id: 7.3_A3.3_T2
description: Insert LINE SEPARATOR (\u2028) into begin of single line comment description: Insert LINE SEPARATOR (\u2028) into begin of single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside info: Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
es5id: 7.3_A3.4_T1
description: Insert PARAGRAPH SEPARATOR (\u2029) into single line comment description: Insert PARAGRAPH SEPARATOR (\u2029) into single line comment
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside info: Single line comments can not contain PARAGRAPH SEPARATOR (U+2029) inside
es5id: 7.3_A3.4_T2
description: > description: >
Insert PARAGRAPH SEPARATOR (\u2029) into begin of single line Insert PARAGRAPH SEPARATOR (\u2029) into begin of single line
comment comment

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can contain Line Terminator at the end of line info: Single line comments can contain Line Terminator at the end of line
es5id: 7.3_A4_T1
description: Insert LINE FEED (U+000A) into the end of single line comment description: Insert LINE FEED (U+000A) into the end of single line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can contain Line Terminator at the end of line info: Single line comments can contain Line Terminator at the end of line
es5id: 7.3_A4_T2
description: Insert CARRIAGE RETURN (U+000D) into the end of single line comment description: Insert CARRIAGE RETURN (U+000D) into the end of single line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can contain Line Terminator at the end of line info: Single line comments can contain Line Terminator at the end of line
es5id: 7.3_A4_T3
description: Insert LINE SEPARATOR (U+2028) into the end of single line comment description: Insert LINE SEPARATOR (U+2028) into the end of single line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Single line comments can contain Line Terminator at the end of line info: Single line comments can contain Line Terminator at the end of line
es5id: 7.3_A4_T4
description: > description: >
Insert PARAGRAPH SEPARATOR (U+2029) into the end of single line Insert PARAGRAPH SEPARATOR (U+2029) into the end of single line
comment comment

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain LINE FEED (U+000A) info: Multi line comment can contain LINE FEED (U+000A)
es5id: 7.3_A5.1_T1
description: Insert LINE FEED (U+000A) into multi line comment description: Insert LINE FEED (U+000A) into multi line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain LINE FEED (U+000A) info: Multi line comment can contain LINE FEED (U+000A)
es5id: 7.3_A5.1_T2
description: Insert real LINE FEED into multi line comment description: Insert real LINE FEED into multi line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain CARRIAGE RETURN (U+000D) info: Multi line comment can contain CARRIAGE RETURN (U+000D)
es5id: 7.3_A5.2_T1
description: Insert CARRIAGE RETURN (U+000D) into multi line comment description: Insert CARRIAGE RETURN (U+000D) into multi line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain CARRIAGE RETURN (U+000D) info: Multi line comment can contain CARRIAGE RETURN (U+000D)
es5id: 7.3_A5.2_T2
description: Insert real CARRIAGE RETURN into multi line comment description: Insert real CARRIAGE RETURN into multi line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain LINE SEPARATOR (U+2028) info: Multi line comment can contain LINE SEPARATOR (U+2028)
es5id: 7.3_A5.3
description: Insert LINE SEPARATOR (U+2028) into multi line comment description: Insert LINE SEPARATOR (U+2028) into multi line comment
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Multi line comment can contain LINE SEPARATOR (U+2029) info: Multi line comment can contain LINE SEPARATOR (U+2029)
es5id: 7.3_A5.4
description: Insert PARAGRAPH SEPARATOR (U+2029) into multi line comment description: Insert PARAGRAPH SEPARATOR (U+2029) into multi line comment
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
Line Terminator cannot be expressed as a Unicode escape sequence Line Terminator cannot be expressed as a Unicode escape sequence
consisting of six characters, namely \u plus four hexadecimal digits consisting of six characters, namely \u plus four hexadecimal digits
es5id: 7.3_A6_T1
description: Insert LINE FEED (U+000A) in var x description: Insert LINE FEED (U+000A) in var x
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
Line Terminator cannot be expressed as a Unicode escape sequence Line Terminator cannot be expressed as a Unicode escape sequence
consisting of six characters, namely \u plus four hexadecimal digits consisting of six characters, namely \u plus four hexadecimal digits
es5id: 7.3_A6_T2
description: Insert CARRIAGE RETURN (U+000D) in var x description: Insert CARRIAGE RETURN (U+000D) in var x
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
Line Terminator cannot be expressed as a Unicode escape sequence Line Terminator cannot be expressed as a Unicode escape sequence
consisting of six characters, namely \u plus four hexadecimal digits consisting of six characters, namely \u plus four hexadecimal digits
es5id: 7.3_A6_T3
description: Insert LINE SEPARATOR (U+2028) in var x description: Insert LINE SEPARATOR (U+2028) in var x
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -5,6 +5,7 @@
info: > info: >
Line Terminator cannot be expressed as a Unicode escape sequence Line Terminator cannot be expressed as a Unicode escape sequence
consisting of six characters, namely \u plus four hexadecimal digits consisting of six characters, namely \u plus four hexadecimal digits
es5id: 7.3_A6_T4
description: Insert PARAGRAPH SEPARATOR (U+2029) in var x description: Insert PARAGRAPH SEPARATOR (U+2029) in var x
flags: [negative] flags: [negative]
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Line Terminators between operators are allowed info: Line Terminators between operators are allowed
es5id: 7.3_A7_T1
description: Insert Line Terminator in var x=y+z description: Insert Line Terminator in var x=y+z
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Line Terminators between operators are allowed info: Line Terminators between operators are allowed
es5id: 7.3_A7_T2
description: Insert Line Terminator in var x=y-z description: Insert Line Terminator in var x=y-z
---*/ ---*/

View File

@ -3,6 +3,7 @@
/*--- /*---
info: Line Terminators between operators are allowed info: Line Terminators between operators are allowed
es5id: 7.3_A7_T3
description: Insert Line Terminator in var x=y*z description: Insert Line Terminator in var x=y*z
---*/ ---*/

Some files were not shown because too many files have changed in this diff Show More