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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource.html

Issue 2146333003: [DevTools] Replace SetScriptSourceError with ExceptionDetails in protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: a Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource.html b/third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource.html
index 3bec1c92b9e2e6f88fbe82f05f70aa777e2d3852..1954945906df260cff5948871bdbc9ec0429fcf9 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource.html
@@ -143,9 +143,8 @@ function test()
var compileError = result.compileError;
logCheck("Has error reported", !!compileError);
logCheck("Reported error is a compile error", !!compileError);
- if (compileError) {
- logEqualsCheck(compileError.lineNumber, 2);
- }
+ if (compileError)
+ logEqualsCheck(compileError.lineNumber, 1);
return next;
}
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector-protocol/debugger/setScriptSource-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698