Chromium Code Reviews| Index: Source/web/tests/data/advance_focus_in_form.html |
| diff --git a/Source/web/tests/data/advance_focus_in_form.html b/Source/web/tests/data/advance_focus_in_form.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8a50ed05899143fc7c70ed85c0a70f18a8d26246 |
| --- /dev/null |
| +++ b/Source/web/tests/data/advance_focus_in_form.html |
| @@ -0,0 +1,21 @@ |
| +<html> |
| +<body> |
| +<form id="form1" name="form1"> |
| + <input type="text" name="input1" id="input1" form="form1" value="input1 from form1"/><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
|
| + <div id="contenteditable1" name="contenteditable1" contenteditable="true">contenteditable1 from form1</div><br> |
| + <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
|
| + <input type="text" name="input2" id="input2" value="input2 from div1 form1"/><br> |
| + </div> |
| + <textarea id="textarea1" name="textarea1">textarea1 from form1</textarea><br> |
| + <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
|
| +</form> |
| +<textarea id="textarea2" name="textarea2" form="form1">textarea2 from form1, which is outside parent hierarchy</textarea><br> |
| +<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
|
| +<div id="contenteditable2" name="contenteditable2" contenteditable="true">contenteditable2 not from form1</div><br> |
| +<form id="form2" name="form2" onkeypress="alert('form2');"> |
| + <textarea id="textarea4" name="textarea4">textarea4 from form2</textarea><br> |
| + <input type="text" name="input4" id="input4" value="input4 from form2"/><br> |
| + <div id="contenteditable3" name="contenteditable3" contenteditable="true">contenteditable3 not from form2</div><br> |
| +</form> |
| +</body> |
| +</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
|