Index: chrome_frame/test/data/full_tab_download_from_new_window.html |
diff --git a/chrome_frame/test/data/full_tab_download_from_new_window.html b/chrome_frame/test/data/full_tab_download_from_new_window.html |
deleted file mode 100644 |
index bb6abe37b5822c267c1ee3fea1aa447fc4a1d5bc..0000000000000000000000000000000000000000 |
--- a/chrome_frame/test/data/full_tab_download_from_new_window.html |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-<html> |
- <head> |
- <meta http-equiv="x-ua-compatible" content="chrome=1" /> |
- <script language="javascript"> |
- function downloadInNewWindow() { |
- var download_url = "download_file.zip"; |
- window.open(download_url, 'download', 'toolbar=0,location=no'); |
- return false; // cancel form submission |
- } |
- </script> |
- </head> |
-<body onload="downloadInNewWindow();"> |
-<form method="POST" action="hero"> |
- <input onclick="return downloadInNewWindow()" value="Download" |
- id="downloadButton" type="button"> |
-</form> |
-</body> |
-</html> |