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

Unified Diff: third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Rebased the patch from TOT 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/Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html
diff --git a/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html b/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html
new file mode 100644
index 0000000000000000000000000000000000000000..23c787b903616fdb6ee353c917ec6fabc74eae6b
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html
@@ -0,0 +1,12 @@
+<html>
+<body>
+<form id="form1">
+ <input type="text" id="input5" value="input5 from form3" tabindex="2"><br>
+ <div id="contenteditable4" contenteditable="true" tabindex="3">contenteditable4 from form3</div><br>
+ <a href="#" id="anchor3" tabindex="4">anchor3 from form3</a><br>
+ <textarea id="textarea6" tabindex="1">textarea6 from form3</textarea><br>
+ <div id="contenteditable5" contenteditable="true" tabindex="-1">contenteditable5 from form3, but not considered for navigation due to invalid tabindex</div><br>
+ <input type="text" id="input6" value="input6 from form3" tabindex="5"><br>
+</form>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698