Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head><title>Download Test</title></head> | |
| 3 <body> | |
| 4 <a id='dl' href="/download-test1.lib">Click to download!</a> | |
| 5 <script> | |
| 6 window.setTimeout(function() { | |
|
Charlie Harrison
2017/06/01 17:49:13
Can you explain why we need setTimeout?
Bryan McQuade
2017/06/02 17:38:28
sure, added a comment, thanks!
| |
| 7 var evt = document.createEvent("MouseEvent"); | |
| 8 evt.initMouseEvent('click', true, true); | |
| 9 document.getElementById('dl').dispatchEvent(evt); | |
| 10 }, 0); | |
| 11 </script> | |
| 12 </body> | |
| 13 </html> | |
| OLD | NEW |