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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html

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/inspector/console/console-context-selector.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html b/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html
index 864a7e4bfa3c5078c8da96e6b995a17399b754ad..f94132f101665a1776955bc0361a8a62590e41f6 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html
@@ -98,7 +98,7 @@ async function test()
var consoleView = Console.ConsoleView.instance();
var selector = consoleView._consoleContextSelector;
InspectorTest.addResult('Console context selector:');
- for (var executionContext of selector._list._items) {
+ for (var executionContext of selector._items._items) {
var selected = UI.context.flavor(SDK.ExecutionContext) === executionContext;
var text = '____'.repeat(selector._depthFor(executionContext)) + selector._titleFor(executionContext);
var disabled = !selector.isItemSelectable(executionContext);

Powered by Google App Engine
This is Rietveld 408576698