Index: chrome/test/webdriver/upload.html |
diff --git a/chrome/test/webdriver/upload.html b/chrome/test/webdriver/upload.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a937f54c83e7225d3e7ffc00e3fcc4e2f4ebce0d |
--- /dev/null |
+++ b/chrome/test/webdriver/upload.html |
@@ -0,0 +1,14 @@ |
+<html> |
+<body> |
+ A fileupload element which holds single file. |
+ <form> |
+ <input type="file" name="fileupload_single" id="fileupload_single" |
+ style="border: 1px black solid;" /> |
+ </form> |
+ A fileupload element which holds multiple files. |
+ <form> |
+ <input type="file" name="fileupload_multi" id="fileupload_multi" |
+ style="border: 1px black solid;" multiple /> |
+ </form> |
+</body> |
+</html> |