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

Unified Diff: LayoutTests/http/tests/inspector/console-test.js

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: for landing 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
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-revoke-error.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector/console-test.js
diff --git a/LayoutTests/http/tests/inspector/console-test.js b/LayoutTests/http/tests/inspector/console-test.js
index fd216d5fca2db3f63600714b02e1df336519fcb1..3e8dacb8c1202923be8d9342cca67bd2cfd82ab5 100644
--- a/LayoutTests/http/tests/inspector/console-test.js
+++ b/LayoutTests/http/tests/inspector/console-test.js
@@ -212,6 +212,13 @@ InspectorTest.dumpConsoleMessagesWithClasses = function(sortMessages) {
InspectorTest.addResult(result[i]);
}
+InspectorTest.dumpConsoleClassesBrief = function()
+{
+ var messageViews = WebInspector.ConsolePanel._view()._visibleViewMessages;
+ for (var i = 0; i < messageViews.length; ++i)
+ InspectorTest.addResult(messageViews[i].toMessageElement().className);
+}
+
InspectorTest.expandConsoleMessages = function(callback, deepFilter, sectionFilter)
{
var messageViews = WebInspector.ConsolePanel._view()._visibleViewMessages;
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-revoke-error.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698