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

Unified Diff: Source/web/tests/data/advance_focus_in_form_with_disabled_and_readonly_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 build breaks in disabled element form. 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_disabled_and_readonly_elements.html
diff --git a/Source/web/tests/data/advance_focus_in_form_with_disabled_and_readonly_elements.html b/Source/web/tests/data/advance_focus_in_form_with_disabled_and_readonly_elements.html
new file mode 100644
index 0000000000000000000000000000000000000000..26170c752aed59c8b2c98cb377cfa94424ded9a3
--- /dev/null
+++ b/Source/web/tests/data/advance_focus_in_form_with_disabled_and_readonly_elements.html
@@ -0,0 +1,13 @@
+<html>
+<body>
+<h3>form4 starts here</h3><br>
kochi 2015/08/06 02:21:00 nit: as the big HTML file is split and this file o
AKV 2015/08/06 08:39:33 Done.
+<form id="form4">
kochi 2015/08/06 02:21:00 nit: as this file contains only one form, any id i
AKV 2015/08/06 08:39:33 Done.
+ <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>
+<h3>form4 ends here</h3><br>
kochi 2015/08/06 02:21:00 nit: ditto as line 3.
AKV 2015/08/06 08:39:33 Done.
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698