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

Unified Diff: ui/views/test/focus_manager_test.cc

Issue 1894383002: MacViews: Implement Full Keyboard Access. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SetFocusBehavior
Patch Set: Rebased. Created 4 years, 8 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: ui/views/test/focus_manager_test.cc
diff --git a/ui/views/test/focus_manager_test.cc b/ui/views/test/focus_manager_test.cc
index 373846c7903f203a9ab8643ff9f6130a453fd871..ea00e40a8a7052e475f992b35beb0d4e515aa3ad 100644
--- a/ui/views/test/focus_manager_test.cc
+++ b/ui/views/test/focus_manager_test.cc
@@ -41,6 +41,11 @@ void FocusManagerTest::SetUp() {
InitContentView();
widget->Show();
+
+// By default test with full keyboard accessibility on Mac.
tapted 2016/04/20 06:05:58 (should be unnecessary with a much earlier comment
+#if defined(OS_MACOSX)
+ GetFocusManager()->SetKeyboardAccessible(true);
+#endif
}
void FocusManagerTest::TearDown() {

Powered by Google App Engine
This is Rietveld 408576698