Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6867)

Unified Diff: chrome/test/webdriver/upload.html

Issue 7055004: File upload API in chromedriver (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed according to the code review. Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698