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

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

Issue 2219393003: DevTools: Runtime.compileScript with persistScript = false should not report script (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments 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 { 1 Compiling script: foo1.js
2 persist: false
3 compilation result: {
2 exceptionDetails : { 4 exceptionDetails : {
3 columnNumber : 2 5 columnNumber : 2
4 lineNumber : 1 6 lineNumber : 1
5 scriptId : 0 7 scriptId : 0
6 text : Uncaught SyntaxError: Unexpected end of input 8 text : Uncaught SyntaxError: Unexpected end of input
7 } 9 }
8 } 10 }
9 { 11 -----
12 Compiling script: foo2.js
13 persist: true
14 Debugger.scriptParsed: foo2.js
15 compilation result: {
10 scriptId : 0 16 scriptId : 0
11 } 17 }
12 { 18 -----
19 Compiling script: foo3.js
20 persist: false
21 compilation result: {
13 } 22 }
14 { 23 -----
24 Compiling script: foo4.js
25 persist: false
26 compilation result: {
15 exceptionDetails : { 27 exceptionDetails : {
16 columnNumber : 13 28 columnNumber : 13
17 lineNumber : 0 29 lineNumber : 0
18 scriptId : 0 30 scriptId : 0
19 text : Uncaught SyntaxError: Unexpected identifier 31 text : Uncaught SyntaxError: Unexpected identifier
20 } 32 }
21 } 33 }
34 -----
22 35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698