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

Unified Diff: LayoutTests/inspector/console/console-preserve-log.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/inspector/console/console-preserve-log.html
diff --git a/LayoutTests/inspector/console/console-preserve-log.html b/LayoutTests/inspector/console/console-preserve-log.html
index bb98fbeaca183b4302e8038361cd886600fda945..b80069d7decf806cd8f81800dad8789ee9a7c8b2 100644
--- a/LayoutTests/inspector/console/console-preserve-log.html
+++ b/LayoutTests/inspector/console/console-preserve-log.html
@@ -5,7 +5,7 @@
<script>
function test()
{
- InspectorTest.consoleModel.addMessage(new WebInspector.ConsoleMessage(InspectorTest.consoleModel.target(), WebInspector.ConsoleMessage.MessageSource.Other, WebInspector.ConsoleMessage.MessageLevel.Log, "PASS"));
+ InspectorTest.consoleModel.addMessage(new WebInspector.ConsoleMessage(InspectorTest.consoleModel.target(), 0, WebInspector.ConsoleMessage.MessageSource.Other, WebInspector.ConsoleMessage.MessageLevel.Log, "PASS"));
WebInspector.settingForTest("preserveConsoleLog").set(true);
InspectorTest.reloadPage(function() {
InspectorTest.dumpConsoleMessages();

Powered by Google App Engine
This is Rietveld 408576698