Index: chrome/test/data/extensions/api_test/webrequest/postData/urlencoded.html |
diff --git a/chrome/test/data/extensions/api_test/webrequest/postData/urlencoded.html b/chrome/test/data/extensions/api_test/webrequest/postData/urlencoded.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bc2767aa5b61f0269d697b005369eb340e692409 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/webrequest/postData/urlencoded.html |
@@ -0,0 +1,29 @@ |
+<!-- |
+ * 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="application/x-www-form-urlencoded"> |
+ <input name="text1" id="text1" type="text" value="TEST_TEXT_1" /> |
+ <input name="text2" id="text2" type="text" value="TEST_TEXT_2" /> |
+ <input name="text3" id="text3" type="text" value="TEST_TEXT_3" /> |
+ <input name="password" id="password" type="password" value="password" /> |
+ <input name="radio" id="radio" type="radio" value="Yes" checked /> Yes |
+ <input name="radio" id="radio" type="radio" value="No" /> No |
+ <input name="check" id="check" type="checkbox" value="option_A" checked /> A |
+ <input name="check" id="check" 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> |