- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / dom_automation / events / test.html
1 <html>
2 <script>
3 function renameLink() {
4   document.links[0].innerHTML = "clicked";
5 }
6 function changeTextfield() {
7   document.getElementById("textfield").value = "clicked";
8 }
9 </script>
10 <body>
11 <a href="javascript:renameLink();">link</a>
12 <textarea>textarea</textarea>
13 <form action="">
14   <input id="textfield" type='text' value='textfield'></input>
15   <input id="button" type='button' value='button' onclick="changeTextfield()">
16   </input>
17 </form>
18 </body>
19 </html>