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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-filter-level-test.html

Issue 2646033003: DevTools: streamline console logging levels, migrate 'log' to 'info' level, 'debug' to 'verbose' le… (Closed)
Patch Set: missing rebaseline Created 3 years, 11 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/console/console-filter-level-test.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-filter-level-test.html b/third_party/WebKit/LayoutTests/inspector/console/console-filter-level-test.html
index ba8661ceaabe65d57ec4fb09ed9b0a2ffccb7e2f..52ac076cdf2c572bedc928f7d8496eed854b0da5 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-filter-level-test.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-filter-level-test.html
@@ -50,9 +50,9 @@ function test()
next();
},
- function onlyLog(next)
+ function onlyInfo(next)
{
- Console.ConsoleView.instance()._filter._levelFilterUI._toggleTypeFilter("log");
+ Console.ConsoleView.instance()._filter._levelFilterUI._toggleTypeFilter("info");
dumpVisibleMessages();
next();
},
@@ -60,7 +60,7 @@ function test()
function onlyErrorDebug(next)
{
Console.ConsoleView.instance()._filter._levelFilterUI._toggleTypeFilter("error");
- Console.ConsoleView.instance()._filter._levelFilterUI._toggleTypeFilter("debug", true);
+ Console.ConsoleView.instance()._filter._levelFilterUI._toggleTypeFilter("verbose", true);
dumpVisibleMessages();
next();
},

Powered by Google App Engine
This is Rietveld 408576698