Chromium Code Reviews| 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> |