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

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

Issue 2911363002: DevTools: Split SoftDropdown out of ConsoleContextSelector (Closed)
Patch Set: fixes 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/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 f6ef0ddeaf3138b8d32971c8df65c44136788a22..b9261c7e80bf22272910cca5cdc2bc15e11c7fa0 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) {
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]' : ''}`);
}
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js ('k') | third_party/WebKit/Source/devtools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698