Chromium Code Reviews| Index: chrome/test/data/extensions/api_test/webrequest/postData/multipart.html |
| diff --git a/chrome/test/data/extensions/api_test/webrequest/postData/multipart.html b/chrome/test/data/extensions/api_test/webrequest/postData/multipart.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0eeac7d9ccfa214ee51c35120d815b61dce48d28 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/api_test/webrequest/postData/multipart.html |
| @@ -0,0 +1,30 @@ |
| +<html> |
| + <body> |
| + <script src="submit.js"></script> |
| + <div> |
| + <form action="nonExistingTarget.html" method="POST" enctype="multipart/form-data"> |
| + <input name="text1" id="text1" type="text" value="TEST_TEXT_1" /> |
| + <!-- |
| + <label for="file1">Filename:</label> |
| + <input name="file1" id="file1" type="file" /> |
| + <label for="file2">Filename:</label> |
| + <input name="file2" id="file2" type="file" /> |
| + --> |
|
battre
2012/07/11 12:28:43
remove these lines?
vabr (Chromium)
2012/07/12 15:13:11
Done.
|
| + <input name="text2" id="text2" type="text" value="TEST_TEXT_2" /> |
| + <input name="text3" id="text3" type="text" value="TEST_TEXT_3" /> |
| + <input name="pw" id="pw" type="password" value="pw" /> |
|
battre
2012/07/11 12:28:43
rename to password?
vabr (Chromium)
2012/07/12 15:13:11
Done.
|
| + <input name="radio" id="radio" type="radio" value="Yes" checked /> Yes |
| + <input name="radio" id="radio" type="radio" value="No" /> No |
| + <input name="chck" id="chck" type="checkbox" value="option_A" checked /> A |
|
battre
2012/07/11 12:28:43
rename to check?
vabr (Chromium)
2012/07/12 15:13:11
Done.
|
| + <input name="chck" id="chck" type="checkbox" value="option_B" /> B |
| + <textarea name="txtarea" id="txtarea" rows="2" cols="20">Text</textarea> |
| + <select name="select" id="select"> |
| + <option value="one">one</option> |
| + <option value="two">two</option> |
| + <option value="three">three</option> |
| + </select> |
| + <input type="submit" /> |
| + </form> |
| + </div> |
| + </body> |
| +</html> |