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

Unified Diff: third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_key_event_listeners.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_key_event_listeners.html
diff --git a/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_key_event_listeners.html b/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_key_event_listeners.html
new file mode 100644
index 0000000000000000000000000000000000000000..3648997a9c7e3d9641ddb6c11a55b8716b8f88cf
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/advance_focus_in_form_with_key_event_listeners.html
@@ -0,0 +1,31 @@
+<html>
+<body>
+<h3>form1 starts here</h3>
+<form id="form1">
+ <input type="text" id="input1" form="form1" value="input1 from form1"><br>
+ <button type="button" id="button1" form="form1">button1 from form1</button><br>
+ <div id="contenteditable1" contenteditable="true">contenteditable1 from form1</div><br>
+ <div id="div1" onkeypress="alert('key event from div1 of form1');"><br>
+ <input type="text" id="input2" value="input2 from div1 form1"><br>
+ </div>
+ <a href="#" id="anchor1">anchor1 from form1</a><br>
+ <textarea id="textarea1">textarea1 from form1</textarea><br>
+ <input type="text" id="input3" value="input3 from form1"><br>
+</form>
+<h3>form1 ends here</h3>
+<textarea id="textarea2" form="form1">textarea2 from form1, which is outside parent hierarchy</textarea><br>
+<textarea id="textarea3">textarea3 neither from form1 nor from form2</textarea><br>
+<button type="button" id="button2" form="form1">button2 from form1, which is out side parent hierarchy, but can't navigate due to non-editable element</button><br>
+<div id="contenteditable2" contenteditable="true">contenteditable2 neither from form1 nor from form2</div><br>
+<textarea id="textarea4" form="formInvalid">textarea4 neither from form1 nor from form2, form attribute is invalid</textarea><br>
+<h3>form2 starts here</h3><br>
+<form id="form2" onkeypress="alert('key event from form2');">
+ <textarea id="textarea5">textarea5 from form2</textarea><br>
+ <input type="text" id="input4" value="input4 from form2"><br>
+ <div id="contenteditable3" contenteditable="true">contenteditable3 from form2</div><br>
+ <a href="#" id="anchor2">anchor2 from form2</a><br>
+ <input type="number" id="input5" value="input5 from form2"><br>
+</form>
+<h3>form2 ends here</h3><br>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698