Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / chrome / test / data / dom_automation / events / test.html
blob022a3a07a38a2856d8fc7ed96f0b4deb726fd6a6
1 <html>
2 <script>
3 function renameLink() {
4 document.links[0].innerHTML = "clicked";
6 function changeTextfield() {
7 document.getElementById("textfield").value = "clicked";
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>