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

Side by Side Diff: Source/web/tests/data/advance_focus_in_form.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 review comments in unit tests. Created 5 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <body>
3 <form id="form1" name="form1">
4 <input type="text" name="input1" id="input1" form="form1" value="input1 from f orm1"/><br>
kochi 2015/07/03 04:10:35 As with <br/> -> <br>, you can close "input" with
AKV 2015/07/26 15:56:34 input1 is with "form" exists inside the form. cont
kochi 2015/07/28 08:43:02 Could you add elements which are usually focusable
AKV 2015/08/05 08:55:55 Added button element inside and outside form to co
5 <div id="contenteditable1" name="contenteditable1" contenteditable="true">cont enteditable1 from form1</div><br>
6 <div id="div1" name="div1" onkeypress="alert('div1');"><br>
kochi 2015/07/03 04:10:34 What is this onkeypress handler for?
AKV 2015/07/26 15:56:34 For checking the KeyEventListener for enabling the
kochi 2015/07/28 08:43:02 I got it, thanks for the explanation. Other reade
AKV 2015/08/05 08:55:55 Done. Thanks
7 <input type="text" name="input2" id="input2" value="input2 from div1 form1"/ ><br>
8 </div>
9 <textarea id="textarea1" name="textarea1">textarea1 from form1</textarea><br>
10 <input type="text" name="input3" id="input3" value="input3 from form1"/><br>
kochi 2015/07/03 04:10:35 If you include <input> twice in the same form, wha
AKV 2015/07/26 15:56:34 One input with form attribute and other without fo
11 </form>
12 <textarea id="textarea2" name="textarea2" form="form1">textarea2 from form1, whi ch is outside parent hierarchy</textarea><br>
13 <textarea id="textarea3" name="textarea3">textarea3 from form2, which is outside parent hierarchy</textarea><br>
kochi 2015/07/03 04:10:35 How this can be from form2?
AKV 2015/07/26 15:56:34 It was a typo while rearranging elements. I correc
14 <div id="contenteditable2" name="contenteditable2" contenteditable="true">conten teditable2 not from form1</div><br>
15 <form id="form2" name="form2" onkeypress="alert('form2');">
16 <textarea id="textarea4" name="textarea4">textarea4 from form2</textarea><br>
17 <input type="text" name="input4" id="input4" value="input4 from form2"/><br>
18 <div id="contenteditable3" name="contenteditable3" contenteditable="true">cont enteditable3 not from form2</div><br>
19 </form>
20 </body>
21 </html>
kochi 2015/07/03 04:10:35 Other things of concerns which occurred to me: 1.
AKV 2015/07/26 15:56:34 1) As per our initial plan, we have to navigate to
kochi 2015/07/28 08:43:02 1) It would be nice to have another set of form el
AKV 2015/08/05 08:55:55 Totally agree with you. We need to cover as much c
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698