Index: third_party/webdriver/test_data/upload.html |
diff --git a/third_party/webdriver/test_data/upload.html b/third_party/webdriver/test_data/upload.html |
deleted file mode 100644 |
index aca398ab7434d4a3946b94e88f79b1d5b0570e92..0000000000000000000000000000000000000000 |
--- a/third_party/webdriver/test_data/upload.html |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <title>Upload Form</title> |
- <script> |
- var intervalId; |
- function onTick() { |
- var label = document.getElementById('upload_label'); |
- label.innerHTML += '.'; |
- } |
- |
- function onUploadSubmit() { |
- document.getElementById('upload_target').contentWindow.document.body. |
- innerHTML = ''; |
- var label = document.getElementById('upload_label'); |
- label.innerHTML = 'Uploading "' + document.forms[0].upload.value + '"'; |
- label.style.display = ''; |
- intervalId = window.setInterval(onTick, 500); |
- return true; |
- } |
- |
- function onUploadDone() { |
- var label = document.getElementById('upload_label'); |
- label.style.display = 'none'; |
- window.clearInterval(intervalId); |
- return true; |
- } |
- </script> |
-</head> |
-<body> |
-<form action="/common/upload" method="post" name="upload_form" |
- target="upload_target" enctype="multipart/form-data" |
- onsubmit="onUploadSubmit();"> |
- <div> |
- Enter a file to upload: |
- <div><input id="upload" name="upload" type="file"/></div> |
- <div><input id="go" type="submit" value="Go!"/></div> |
- </div> |
- <div id="upload_label" style="display:none"></div> |
- <iframe src="" id="upload_target" name="upload_target" |
- style="width:300px;height:200px"> |
- </iframe> |
-</form> |
-</body> |
-</html> |