OLD | NEW |
1 CONSOLE MESSAGE: line 8: foo | 1 CONSOLE MESSAGE: line 8: foo |
2 CONSOLE ERROR: line 1: Uncaught SyntaxError: Unexpected token } | 2 CONSOLE ERROR: line 1: Uncaught SyntaxError: Unexpected token } |
3 Tests that log message and syntax errors from inline scripts with sourceURL are
logged into console, contains correct link and doesn't cause browser crash. | 3 Tests that log message and syntax errors from inline scripts with sourceURL are
logged into console, contains correct link and doesn't cause browser crash. |
4 | 4 |
5 foo.js:4 foo | 5 foo.js:4 foo |
6 boo.js:1 Uncaught SyntaxError: Unexpected token } | 6 boo.js:1 Uncaught SyntaxError: Unexpected token } |
7 at addInlineWithSyntaxError (foo.js:12) | 7 at addInlineWithSyntaxError (foo.js:12) |
8 addInlineWithSyntaxError @ foo.js:12 | 8 addInlineWithSyntaxError @ foo.js:12 |
| 9 setTimeout (async) |
| 10 (anonymous) @ VM:1 |
9 | 11 |
OLD | NEW |