Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <script> | |
|
Charlie Reis
2016/12/09 22:00:26
nit: Wrong indent.
Jialiu Lin
2016/12/12 23:43:38
Done.
| |
| 4 // Click on a link by id to star a test case. | |
| 5 function clickLink(linkId) { | |
| 6 var node = document.getElementById(linkId); | |
| 7 if (node != null) { | |
| 8 // Click and open link in the same tab. | |
| 9 node.click(); | |
| 10 } | |
| 11 } | |
| 12 </script> | |
| 13 </head> | |
| 14 <body> | |
| 15 <a id="download_on_landing_page" href="../signed.exe"> | |
| 16 Direct download from landing page | |
| 17 </a><br> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |