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

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

Issue 2911363002: DevTools: Split SoftDropdown out of ConsoleContextSelector (Closed)
Patch Set: fixes Created 3 years, 6 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/http/tests/inspector/console-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
index eb9918c82e3cf3f4eedfc2f1b018f359159fde71..fa8699c08c40850fa9dad4bdeb370a9297c3133c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
@@ -396,7 +396,7 @@ InspectorTest.changeExecutionContext = function(namePrefix)
{
var selector = Console.ConsoleView.instance()._consoleContextSelector;
for (var executionContext of selector._items) {
- if (selector._titleFor(executionContext).startsWith(namePrefix)) {
+ if (selector.titleFor(executionContext).startsWith(namePrefix)) {
UI.context.setFlavor(SDK.ExecutionContext, executionContext);
return;
}

Powered by Google App Engine
This is Rietveld 408576698