Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Side by Side Diff: LayoutTests/inspector/console/console-eval-throw-expected.txt

Issue 369333002: DevTools: Added error message when the command is invoked from the console with exception (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@add-evaluate-exception-details
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Tests that evaluating 'throw undefined|1|string|object|Error' in the console won 't crash the browser and correctly reported. Bug 59611.
2
3
4 Running: testThrowUndefined
vsevik 2014/07/18 14:41:06 We should clear messages between tests in test sui
kozyatinskiy1 2014/07/18 16:10:08 Done.
5 throw undefined
6 Uncaught undefined VM:2
7
8 Running: testThrowNumber
9 throw undefined
10 Uncaught undefined VM:2
11 throw 1
12 Uncaught 1 VM:2
13
14 Running: testThrowString
15 throw undefined
16 Uncaught undefined VM:2
17 throw 1
18 Uncaught 1 VM:2
19 throw 'asdf'
20 Uncaught asdf VM:2
21
22 Running: testThrowObject
23 throw undefined
24 Uncaught undefined VM:2
25 throw 1
26 Uncaught 1 VM:2
27 throw 'asdf'
28 Uncaught asdf VM:2
29 throw {a:42}
30 Uncaught Object {a: 42} VM:2
31
32 Running: testThrowError
33 throw undefined
34 Uncaught undefined VM:2
35 throw 1
36 Uncaught 1 VM:2
37 throw 'asdf'
38 Uncaught asdf VM:2
39 throw {a:42}
40 Uncaught Object {a: 42} VM:2
41 throw new Error('asdf')
42 Uncaught Error: asdf VM:2
43
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698