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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
index 9904eb32784acd0cae73a0f4e7d69d718cd91d8f..75cc0adf7e2b4c76aa12da5757a36bbda4323d3e 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript-expected.txt
@@ -1,4 +1,6 @@
-{
+Compiling script: foo1.js
+ persist: false
+compilation result: {
exceptionDetails : {
columnNumber : 2
lineNumber : 1
@@ -6,12 +8,22 @@
text : Uncaught SyntaxError: Unexpected end of input
}
}
-{
+-----
+Compiling script: foo2.js
+ persist: true
+Debugger.scriptParsed: foo2.js
+compilation result: {
scriptId : 0
}
-{
+-----
+Compiling script: foo3.js
+ persist: false
+compilation result: {
}
-{
+-----
+Compiling script: foo4.js
+ persist: false
+compilation result: {
exceptionDetails : {
columnNumber : 13
lineNumber : 0
@@ -19,4 +31,5 @@
text : Uncaught SyntaxError: Unexpected identifier
}
}
+-----

Powered by Google App Engine
This is Rietveld 408576698