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

Unified Diff: LayoutTests/http/tests/inspector/console/console-links-on-messages-before-inspection.html

Issue 1095943002: DevTools: [console] Logged promise rejections do not change state once handled (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: thread-local sequence numbers Created 5 years, 8 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: LayoutTests/http/tests/inspector/console/console-links-on-messages-before-inspection.html
diff --git a/LayoutTests/http/tests/inspector/console/console-links-on-messages-before-inspection.html b/LayoutTests/http/tests/inspector/console/console-links-on-messages-before-inspection.html
index 5c69de54420028ebdf567843d5bc90184f9875a5..802c462cfcde5cb2c06da9b5887a92e6545e43ec 100644
--- a/LayoutTests/http/tests/inspector/console/console-links-on-messages-before-inspection.html
+++ b/LayoutTests/http/tests/inspector/console/console-links-on-messages-before-inspection.html
@@ -15,7 +15,7 @@ function loadScript()
function test()
{
var mainTarget = WebInspector.targetManager.mainTarget();
- var message = new WebInspector.ConsoleMessage(mainTarget, WebInspector.ConsoleMessage.MessageSource.JS, WebInspector.ConsoleMessage.MessageLevel.Log, "hello?", null, " http://127.0.0.1:8000/inspector/resources/source2.js");
+ var message = new WebInspector.ConsoleMessage(mainTarget, 0, WebInspector.ConsoleMessage.MessageSource.JS, WebInspector.ConsoleMessage.MessageLevel.Log, "hello?", null, " http://127.0.0.1:8000/inspector/resources/source2.js");
mainTarget.consoleModel.addMessage(message);
mainTarget.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, onScriptAdded);

Powered by Google App Engine
This is Rietveld 408576698