| 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 f94132f101665a1776955bc0361a8a62590e41f6..455f2ffd9cf48b76bf395251f2687ffc8da403fb 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/console/console-context-selector.html
|
| @@ -100,7 +100,7 @@ async function test()
|
| InspectorTest.addResult('Console context selector:');
|
| 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 text = '____'.repeat(selector._depthFor(executionContext)) + selector.titleFor(executionContext);
|
| var disabled = !selector.isItemSelectable(executionContext);
|
| InspectorTest.addResult(`${selected ? '*' : ' '} ${text} ${disabled ? '[disabled]' : ''}`);
|
| }
|
|
|