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

Side by Side Diff: chrome/test/data/extensions/api_test/webrequest/postData/urlencoded.html

Issue 10694055: Add read-only access to POST data for webRequest's onBeforeRequest (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding an example value of formData to the docs Created 8 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
3 * source code is governed by a BSD-style license that can be found in the
4 * LICENSE file.
5 -->
6 <html>
7 <body>
8 <script src="submit.js"></script>
9 <div>
10 <form action="nonExistingTarget.html" method="POST" enctype="application/x-w ww-form-urlencoded">
11 <input name="text1" id="text1" type="text" value="TEST_TEXT_1" />
12 <input name="text2" id="text2" type="text" value="TEST_TEXT_2" />
13 <input name="text3" id="text3" type="text" value="TEST_TEXT_3" />
14 <input name="password" id="password" type="password" value="password" />
15 <input name="radio" id="radio" type="radio" value="Yes" checked /> Yes
16 <input name="radio" id="radio" type="radio" value="No" /> No
17 <input name="check" id="check" type="checkbox" value="option_A" checked /> A
18 <input name="check" id="check" type="checkbox" value="option_B" /> B
19 <textarea name="txtarea" id="txtarea" rows="2" cols="20">Text</textarea>
20 <select name="select" id="select">
21 <option value="one">one</option>
22 <option value="two">two</option>
23 <option value="three">three</option>
24 </select>
25 <input type="submit" />
26 </form>
27 </div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698