Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <script> | |
| 4 function downloadInNewTab() { | |
|
Charlie Reis
2016/10/28 23:36:09
nit: Fix indent.
Jialiu Lin
2016/10/29 00:45:34
Done.
| |
| 5 var tab = window.open(''); | |
| 6 tab.opener = null; | |
| 7 tab.document.write('<META HTTP-EQUIV="refresh" content="0; url=../ signed.exe">'); | |
| 8 tab.document.close(); | |
| 9 } | |
| 10 </script> | |
| 11 </head> | |
| 12 <body> | |
| 13 <a id="iframe_new_tab_download" href="#" onclick="downloadInNewTab()"> | |
| 14 Open download in new tab frome an iframe | |
| 15 </a><br> | |
| 16 </body> | |
| 17 </html> | |
| OLD | NEW |