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

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

Issue 2916743002: [DevTools] Introduce Common.List used as a backend for list controls (Closed)
Patch Set: addressed comments Created 3 years, 7 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 d23a82e3d1d1e83ca0ecc3623833b583a1a89f77..9210a99a99310745ce9421f6981ddbb92fa171d7 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
@@ -395,7 +395,7 @@ InspectorTest.waitUntilNthMessageReceivedPromise = function(count)
InspectorTest.changeExecutionContext = function(namePrefix)
{
var selector = Console.ConsoleView.instance()._consoleContextSelector;
- for (var executionContext of selector._list._items) {
+ for (var executionContext of selector._items._items) {
if (selector._titleFor(executionContext).startsWith(namePrefix)) {
UI.context.setFlavor(SDK.ExecutionContext, executionContext);
return;

Powered by Google App Engine
This is Rietveld 408576698