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

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

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Fixed the build break by replacing WebViewImpl object with WebViewBase Created 3 years, 7 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_disabled_and_readonly_elements.html
diff --git a/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_disabled_and_readonly_elements.html b/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_disabled_and_readonly_elements.html
new file mode 100644
index 0000000000000000000000000000000000000000..41efe9ec64ab50583f73aec797afe39b0136ac74
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_disabled_and_readonly_elements.html
@@ -0,0 +1,11 @@
+<html>
+<body>
+<form id="form1">
+ <div id="contenteditable6" contenteditable="true">contenteditable6 from form4</div><br>
+ <input type="text" id="input7" disabled value="input7 from form4 but skipped due to disabled element"><br>
+ <input type="text" id="input8" readonly value="input8 from form4 but skipped due to readonly element"><br>
+ <textarea id="textarea7" disabled readonly>textarea7 from form4 but skipped due to disabled and readonly element</textarea><br>
+ <div id="contenteditable7" contenteditable="true">contenteditable7 from form4</div><br>
+</form>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698