| 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 cd0116397904b44e7c3a030cf4ab10b90f6f08f7..864a7e4bfa3c5078c8da96e6b995a17399b754ad 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html
|
| @@ -99,7 +99,7 @@ async function test()
|
| var selector = consoleView._consoleContextSelector;
|
| InspectorTest.addResult('Console context selector:');
|
| for (var executionContext of selector._list._items) {
|
| - var selected = selector._list.selectedItem() === executionContext;
|
| + var selected = UI.context.flavor(SDK.ExecutionContext) === executionContext;
|
| var text = '____'.repeat(selector._depthFor(executionContext)) + selector._titleFor(executionContext);
|
| var disabled = !selector.isItemSelectable(executionContext);
|
| InspectorTest.addResult(`${selected ? '*' : ' '} ${text} ${disabled ? '[disabled]' : ''}`);
|
|
|