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

Unified Diff: content/test/data/android/input/input_forms.html

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Added inputType check in ImeTest 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: content/test/data/android/input/input_forms.html
diff --git a/content/test/data/android/input/input_forms.html b/content/test/data/android/input/input_forms.html
index 55b0dadfa80310ca8fa465cd0cd99ff71f185fae..1087dabe7fcf812951ea8d7d1dadfbdd966f1ad9 100644
--- a/content/test/data/android/input/input_forms.html
+++ b/content/test/data/android/input/input_forms.html
@@ -3,11 +3,13 @@
<meta name="viewport" content="width=device-width" />
</head>
<body>
- <form action="about:blank">
+ <form id="form1" action="about:blank">
<input id="input_text" type="text" size="10"/>
<br/>
+ <div id="contenteditable1" contenteditable>contenteditable1 from form1</div>
Changwan Ryu 2017/05/11 22:57:13 remove
AKVT 2017/05/12 13:26:25 Done.
+ <br/>
</form>
- <form>
+ <form id="form2">
Changwan Ryu 2017/05/11 22:57:13 remove id
AKVT 2017/05/12 13:26:25 Done.
<br/>
<input id="input_radio" type="radio" style="width:50px;height:50px" />
<br/>
@@ -19,6 +21,8 @@
<input id="input_number2" type="number" /><br/>
<br/>
<span id="plain_text">This is Plain Text One</span>
+ <br/>
+ <div id="contenteditable2" contenteditable>contenteditable2 from form2</div>
Changwan Ryu 2017/05/11 22:57:13 <div id="contenteditable1" contenteditable>content
AKVT 2017/05/12 13:26:25 Done.
</form>
<!-- We may trigger different sets of events for CONTENTEDITABLE and INPUT / TEXTAREA -->

Powered by Google App Engine
This is Rietveld 408576698