Index: chrome/test/data/extensions/api_test/webrequest/requestBody/multipart.html |
diff --git a/chrome/test/data/extensions/api_test/webrequest/requestBody/multipart.html b/chrome/test/data/extensions/api_test/webrequest/requestBody/multipart.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c370a933b1f02c51951471ec5d5e5b4c62475420 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/webrequest/requestBody/multipart.html |
@@ -0,0 +1,31 @@ |
+<!-- |
+ * Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this |
+ * source code is governed by a BSD-style license that can be found in the |
+ * LICENSE file. |
+--> |
+<html> |
+ <body> |
+ <script src="submit.js"></script> |
+ <div> |
+ <form action="nonExistingTarget.html" method="POST" enctype="multipart/form-data"> |
+ <input name='text"1ěšý人 |
+ 
' type="text" value="TEST_TEXT_1" /> |
+ <input name="text2" type="text" value="TEST_TEXT_2" /> |
+ <input name="text3" type="text" value="TEST_TEXT_3" /> |
+ <input name="password" type="password" value="password" /> |
+ <input name="radio" type="radio" value="Yes" checked /> Yes |
+ <input name="radio" type="radio" value="No" /> No |
+ <input name="check" type="checkbox" value="option_A" checked /> A |
+ <input name="check" type="checkbox" value="option_B" /> B |
+ <textarea name="txtarea" rows="2" cols="20">text"1ěšý人 |
+ 
</textarea> |
+ <select name="select"> |
+ <option value="one">one</option> |
+ <option value="two">two</option> |
+ <option value="three">three</option> |
+ </select> |
+ <input type="submit" /> |
+ </form> |
+ </div> |
+ </body> |
+</html> |