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

Unified Diff: LayoutTests/fast/dom/shadow/focus-navigation.html

Issue 681103003: Fix a bug of sequential focus navigation with <select multiple>, and so on. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | Source/core/page/FocusController.cpp » ('j') | Source/core/page/FocusController.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/shadow/focus-navigation.html
diff --git a/LayoutTests/fast/dom/shadow/focus-navigation.html b/LayoutTests/fast/dom/shadow/focus-navigation.html
index 52ddc85fd7650f5d81a4daec049ea2f81e6b1f32..074f4bc0d90fff8b8697652a0657981c2ad08a37 100644
--- a/LayoutTests/fast/dom/shadow/focus-navigation.html
+++ b/LayoutTests/fast/dom/shadow/focus-navigation.html
@@ -21,6 +21,10 @@ function prepareDOMTree(parent)
createDOM('div', {'id': 'host-A', 'tabindex': -1},
createShadowRoot(
createDOM('input', {'id': 'input-1', 'tabindex': 1}),
+ createDOM('div', {'tabindex': 2, 'style': 'visibility:hidden;'},
+ createShadowRoot()),
+ createDOM('input', {'tabindex': 3, 'type': 'date', 'disabled': ''}),
+ createDOM('select', {'tabindex': 4, 'multiple': '', 'disabled': ''}),
createDOM('div', {'id': 'nested-host', 'tabindex': 30},
createShadowRoot(
createDOM('input', {'tabindex': -1}),
« no previous file with comments | « no previous file | Source/core/page/FocusController.cpp » ('j') | Source/core/page/FocusController.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698