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

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

Issue 939603002: Adding support for Smart GO NEXT feature in Android Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed unit test breaks due to one element skip. Created 5 years, 4 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: Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html
diff --git a/Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html b/Source/web/tests/data/advance_focus_in_form_with_tabindex_elements.html
new file mode 100644
index 0000000000000000000000000000000000000000..23c787b903616fdb6ee353c917ec6fabc74eae6b
--- /dev/null
+++ b/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>
« no previous file with comments | « Source/web/tests/data/advance_focus_in_form_with_key_event_listeners.html ('k') | public/web/WebTextInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698