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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-evaluate-async-expected.txt

Issue 2249743006: [DevTools] Fill ExceptionDetails with more details, unify usage across protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: browser test Created 4 years, 4 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
1 CONSOLE ERROR: Uncaught (in promise) 239 1 CONSOLE ERROR: Uncaught (in promise) 239
2 Tests that Runtime.evaluate works with awaitPromise flag. 2 Tests that Runtime.evaluate works with awaitPromise flag.
3 3
4 Running test: testResolvedPromise 4 Running test: testResolvedPromise
5 { 5 {
6 result : { 6 result : {
7 description : 239 7 description : 239
8 type : number 8 type : number
9 value : 239 9 value : 239
10 } 10 }
11 } 11 }
12 12
13 Running test: testRejectedPromise 13 Running test: testRejectedPromise
14 { 14 {
15 exceptionDetails : { 15 exceptionDetails : {
16 columnNumber : 0 16 columnNumber : 0
17 exception : {
18 description : 239
19 objectId : 0
20 type : number
21 value : 239
22 }
23 exceptionId : 0
17 lineNumber : 0 24 lineNumber : 0
18 scriptId : 25 scriptId :
19 stackTrace : { 26 stackTrace : {
20 callFrames : [ 27 callFrames : [
21 ] 28 ]
22 } 29 }
23 text : Promise was rejected 30 text : Uncaught (in promise)
24 } 31 }
25 result : { 32 result : {
26 description : 239 33 description : 239
27 type : number 34 type : number
28 value : 239 35 value : 239
29 } 36 }
30 } 37 }
31 38
32 Running test: testPrimitiveValueInsteadOfPromise 39 Running test: testPrimitiveValueInsteadOfPromise
33 { 40 {
(...skipping 14 matching lines...) Expand all
48 value : { 55 value : {
49 a : 239 56 a : 239
50 } 57 }
51 } 58 }
52 } 59 }
53 60
54 Running test: testExceptionInEvaluate 61 Running test: testExceptionInEvaluate
55 { 62 {
56 exceptionDetails : { 63 exceptionDetails : {
57 columnNumber : 0 64 columnNumber : 0
65 exception : {
66 description : 239
67 objectId : 0
68 type : number
69 value : 239
70 }
71 exceptionId : 0
58 lineNumber : 0 72 lineNumber : 0
59 scriptId : 73 scriptId :
60 text : Uncaught 239 74 text : Uncaught
61 } 75 }
62 result : { 76 result : {
63 description : 239 77 description : 239
64 type : number 78 type : number
65 value : 239 79 value : 239
66 } 80 }
67 } 81 }
68 82
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698