OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
| 2 <html><head><title>Test Download Multiple files Infobar.</title> |
| 3 <script> |
| 4 function RedirectToDangerous() { |
| 5 filename = window.location.search.split("?")[1]; |
| 6 window.location.href = filename; |
| 7 } |
| 8 </script> |
| 9 </head> |
| 10 |
| 11 <body onload="RedirectToDangerous();"> |
| 12 <h2> |
| 13 Should trigger download for an unsafe/dangerous file type.<br> |
| 14 Filename should be passed as query string. |
| 15 </h2> |
| 16 |
| 17 </body> |
| 18 </html> |
| 19 |
OLD | NEW |