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

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

Issue 2911363002: DevTools: Split SoftDropdown out of ConsoleContextSelector (Closed)
Patch Set: remove depth in test 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 9210a99a99310745ce9421f6981ddbb92fa171d7..019e6de4a29d5a98d237c0763bfb84bf550903cf 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._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