Name Description Size
7.3-5.js --- es5id: 7.3-5 description: > 7.3 - ES5 recognizes the character <LS> (\u2028) as terminating string literal --- 466
7.3-6.js --- es5id: 7.3-6 description: > 7.3 - ES5 recognizes the character <PS> (\u2029) as terminating string literal --- 466
7.3-15.js --- es5id: 7.3-15 description: 7.3 - ES5 recognize <BOM> (\uFFFF) as a whitespace character --- 430
between-tokens-cr.js --- info: CARRIAGE RETURN (U+000D) may occur between any two tokens esid: sec-line-terminators es5id: 7.3_A1.2_T2 description: Insert real CARRIAGE RETURN between tokens of var x=1 --- 451
between-tokens-lf.js --- info: LINE FEED (U+000A) may occur between any two tokens esid: sec-line-terminators es5id: 7.3_A1.1_T2 description: Insert real LINE FEED between tokens of var x=1 --- 369
between-tokens-ls.js --- info: LINE SEPARATOR (U+2028) may occur between any two tokens esid: sec-line-terminators es5id: 7.3_A1.3 description: Insert LINE SEPARATOR (\u2028) between tokens of var x=1 --- 389
between-tokens-ps.js --- info: PARAGRAPH SEPARATOR (U+2029) may occur between any two tokens esid: sec-line-terminators es5id: 7.3_A1.4 description: Insert PARAGRAPH SEPARATOR (\u2029) between tokens of var x=1 --- 399
browser.js 0
comment-multi-cr.js --- info: Multi line comment can contain CARRIAGE RETURN (U+000D) esid: sec-line-terminators es5id: 7.3_A5.2_T2 description: Insert real CARRIAGE RETURN into multi line comment --- 511
comment-multi-lf.js --- info: Multi line comment can contain LINE FEED (U+000A) esid: sec-line-terminators es5id: 7.3_A5.1_T2 description: Insert real LINE FEED into multi line comment negative: phase: runtime type: Test262Error --- 876
comment-multi-ls.js --- info: Multi line comment can contain LINE SEPARATOR (U+2028) esid: sec-line-terminators es5id: 7.3_A5.3 description: Insert LINE SEPARATOR (U+2028) into multi line comment negative: phase: runtime type: Test262Error --- 891
comment-multi-ps.js --- info: Multi line comment can contain PARAGRAPH SEPARATOR (U+2029) esid: sec-line-terminators es5id: 7.3_A5.1_T2 description: Insert real PARAGRAPH SEPARATOR into multi line comment negative: phase: runtime type: Test262Error --- 893
comment-single-cr.js --- info: Single line comments can contain Line Terminator at the end of line esid: sec-line-terminators es5id: 7.3_A4_T2 description: Insert CARRIAGE RETURN (U+000D) into the end of single line comment negative: phase: runtime type: Test262Error --- 884
comment-single-lf.js --- info: Single line comments are terminated by the LINE FEED (U+000A) character esid: sec-line-terminators es5id: 7.3_A3.1_T1 description: Insert LINE FEED (\u000A) into single line comment negative: phase: runtime type: Test262Error --- 873
comment-single-ls.js --- info: Single line comments can contain Line Terminator at the end of line esid: sec-line-terminators es5id: 7.3_A4_T3 description: Insert LINE SEPARATOR (U+2028) into the end of single line comment negative: phase: runtime type: Test262Error --- 885
comment-single-ps.js --- info: Single line comments can contain Line Terminator at the end of line esid: sec-line-terminators es5id: 7.3_A4_T4 description: > Insert PARAGRAPH SEPARATOR (U+2029) into the end of single line comment negative: phase: runtime type: Test262Error --- 900
invalid-comment-single-cr.js --- info: Single line comments can not contain CARRIAGE RETURN (U+000D) inside es5id: 7.3_A3.2_T2 esid: sec-line-terminators description: Insert CARRIAGE RETURN (\u000D) into begin of single line comment negative: phase: parse type: SyntaxError --- 515
invalid-comment-single-lf.js --- 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 negative: phase: parse type: SyntaxError --- 422
invalid-comment-single-ls.js --- info: | Single line comments are terminated by the LINE SEPARATOR (U+2028) character es5id: 7.3_A3.3_T1 description: Insert LINE SEPARATOR (\u2028) into single line comment negative: phase: parse type: SyntaxError --- 457
invalid-comment-single-ps.js --- 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 negative: phase: parse type: SyntaxError --- 448
invalid-regexp-cr.js --- esid: sec-line-terminators es5id: 7.3-7 description: > 7.3 - ES5 recognizes the character <CR> (\u000D) as terminating regular expression literals negative: phase: parse type: SyntaxError --- 393
invalid-regexp-lf.js --- esid: sec-line-terminators es5id: 7.3-7 description: > 7.3 - ES5 recognizes the character <LF> (\u000A) as terminating regular expression literals negative: phase: parse type: SyntaxError --- 393
invalid-regexp-ls.js --- esid: sec-line-terminators es5id: 7.3-7 description: > 7.3 - ES5 recognizes the character <LS> (\u2028) as terminating regular expression literals negative: phase: parse type: SyntaxError --- 405
invalid-regexp-ps.js --- esid: sec-line-terminators es5id: 7.3-8 description: > 7.3 - ES5 recognizes the character <PS> (\u2029) as terminating regular expression literals negative: phase: parse type: SyntaxError --- 405
invalid-string-cr.js --- info: CARRIAGE RETURN (U+000D) within strings is not allowed es5id: 7.3_A2.2_T1 esid: sec-line-terminators description: Insert CARRIAGE RETURN (\u000D) into string negative: phase: parse type: SyntaxError --- 409
invalid-string-lf.js --- info: LINE FEED (U+000A) within strings is not allowed es5id: 7.3_A2.1_T1 esid: sec-line-terminators description: Insert LINE FEED (\u000A) into string negative: phase: parse type: SyntaxError --- 397
S7.3_A2.1_T2.js --- info: LINE FEED (U+000A) within strings is not allowed es5id: 7.3_A2.1_T2 description: Use real LINE FEED into string negative: phase: parse type: SyntaxError --- 382
S7.3_A2.2_T2.js --- info: CARRIAGE RETURN (U+000D) within strings is not allowed es5id: 7.3_A2.2_T2 description: Insert real CARRIAGE RETURN into string negative: phase: parse type: SyntaxError --- 397
S7.3_A3.2_T1.js --- 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 negative: phase: parse type: SyntaxError --- 443
S7.3_A5.4.js --- 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 --- 612
S7.3_A6_T1.js --- info: | Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits es5id: 7.3_A6_T1 description: Insert LINE FEED (U+000A) in var x negative: phase: parse type: SyntaxError --- 468
S7.3_A6_T2.js --- info: | Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits es5id: 7.3_A6_T2 description: Insert CARRIAGE RETURN (U+000D) in var x negative: phase: parse type: SyntaxError --- 474
S7.3_A6_T3.js --- info: | Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits es5id: 7.3_A6_T3 description: Insert LINE SEPARATOR (U+2028) in var x negative: phase: parse type: SyntaxError --- 473
S7.3_A6_T4.js --- info: | Line Terminator cannot be expressed as a Unicode escape sequence consisting of six characters, namely \u plus four hexadecimal digits es5id: 7.3_A6_T4 description: Insert PARAGRAPH SEPARATOR (U+2029) in var x negative: phase: parse type: SyntaxError --- 478
S7.3_A7_T1.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T1 description: Insert Line Terminator in var x=y+z --- 1158
S7.3_A7_T2.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T2 description: Insert Line Terminator in var x=y-z --- 1158
S7.3_A7_T3.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T3 description: Insert Line Terminator in var x=y*z --- 1158
S7.3_A7_T4.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T4 description: Insert Line Terminator in var x=y/z --- 1162
S7.3_A7_T5.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T5 description: Insert Line Terminator in var x=y%z --- 1166
S7.3_A7_T6.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T6 description: Insert Line Terminator in var x=y>>z --- 1171
S7.3_A7_T7.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T7 description: Insert Line Terminator in var x=y<<z --- 1159
S7.3_A7_T8.js --- info: Line Terminators between operators are allowed es5id: 7.3_A7_T8 description: Insert Line Terminator in var x=y<z --- 1182
shell.js 0