comparison: editor/reftests/dynamic-type-4.html
editor/reftests/dynamic-type-4.html
- changeset 2
- 7e26c7da4463
equal
deleted
inserted
replaced
|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <body> |
|
4 <input type="checkbox" value="foo"> |
|
5 <script> |
|
6 var i = document.getElementsByTagName("input")[0]; |
|
7 i.type = "text"; |
|
8 i.value = "abcdef"; |
|
9 </script> |
|
10 </body> |
|
11 </html> |