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

Side by Side Diff: test/inspector/runtime/exception-thrown-expected.txt

Issue 2384373002: [inspector] introduced exceptionThrown support in test runner (Closed)
Patch Set: addressed comments Created 4 years, 2 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
« no previous file with comments | « test/inspector/runtime/exception-thrown.js ('k') | test/inspector/task-runner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Check that exceptionThrown is supported by test runner.
2 {
3 method : Runtime.exceptionThrown
4 params : {
5 exceptionDetails : {
6 columnNumber : 2
7 exception : {
8 className : Error
9 description : Error at setTimeout (<anonymous>:2:9)
10 objectId : <objectId>
11 preview : {
12 description : Error at setTimeout (<anonymous>:2:9)
13 overflow : false
14 properties : [
15 [0] : {
16 name : stack
17 type : string
18 value : Error at setTimeout (<anonymous>:2:9)
19 }
20 ]
21 subtype : error
22 type : object
23 }
24 subtype : error
25 type : object
26 }
27 exceptionId : <exceptionId>
28 executionContextId : <executionContextId>
29 lineNumber : 1
30 stackTrace : {
31 callFrames : [
32 [0] : {
33 columnNumber : 8
34 functionName : setTimeout
35 lineNumber : 1
36 scriptId : <scriptId>
37 url :
38 }
39 ]
40 }
41 text : Uncaught Error
42 }
43 timestamp : <timestamp>
44 }
45 }
46 {
47 method : Runtime.exceptionThrown
48 params : {
49 exceptionDetails : {
50 columnNumber : 1
51 exception : {
52 className : SyntaxError
53 description : SyntaxError: Unexpected token }
54 objectId : <objectId>
55 preview : {
56 description : SyntaxError: Unexpected token }
57 overflow : false
58 properties : [
59 [0] : {
60 name : stack
61 type : string
62 value : SyntaxError: Unexpected token }
63 }
64 [1] : {
65 name : message
66 type : string
67 value : Unexpected token }
68 }
69 ]
70 subtype : error
71 type : object
72 }
73 subtype : error
74 type : object
75 }
76 exceptionId : <exceptionId>
77 executionContextId : <executionContextId>
78 lineNumber : 0
79 scriptId : <scriptId>
80 stackTrace : {
81 callFrames : [
82 ]
83 }
84 text : Uncaught SyntaxError: Unexpected token }
85 }
86 timestamp : <timestamp>
87 }
88 }
89 {
90 method : Runtime.exceptionThrown
91 params : {
92 exceptionDetails : {
93 columnNumber : 2
94 exception : {
95 description : 239
96 type : number
97 value : 239
98 }
99 exceptionId : <exceptionId>
100 executionContextId : <executionContextId>
101 lineNumber : 1
102 stackTrace : {
103 callFrames : [
104 [0] : {
105 columnNumber : 2
106 functionName : setTimeout
107 lineNumber : 1
108 scriptId : <scriptId>
109 url :
110 }
111 ]
112 }
113 text : Uncaught 239
114 }
115 timestamp : <timestamp>
116 }
117 }
OLDNEW
« no previous file with comments | « test/inspector/runtime/exception-thrown.js ('k') | test/inspector/task-runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698