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

Side by Side Diff: chrome/test/data/extensions/api_test/webrequest/postData/multipart.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: Deleting a forgotten comment 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 <html>
2 <body>
3 <script src="submit.js"></script>
4 <div>
5 <form action="nonExistingTarget.html" method="POST" enctype="multipart/form- data">
6 <input name="text1" id="text1" type="text" value="TEST_TEXT_1" />
7 <!--
8 <label for="file1">Filename:</label>
9 <input name="file1" id="file1" type="file" />
10 <label for="file2">Filename:</label>
11 <input name="file2" id="file2" type="file" />
12 -->
battre 2012/07/11 12:28:43 remove these lines?
vabr (Chromium) 2012/07/12 15:13:11 Done.
13 <input name="text2" id="text2" type="text" value="TEST_TEXT_2" />
14 <input name="text3" id="text3" type="text" value="TEST_TEXT_3" />
15 <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.
16 <input name="radio" id="radio" type="radio" value="Yes" checked /> Yes
17 <input name="radio" id="radio" type="radio" value="No" /> No
18 <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.
19 <input name="chck" id="chck" type="checkbox" value="option_B" /> B
20 <textarea name="txtarea" id="txtarea" rows="2" cols="20">Text</textarea>
21 <select name="select" id="select">
22 <option value="one">one</option>
23 <option value="two">two</option>
24 <option value="three">three</option>
25 </select>
26 <input type="submit" />
27 </form>
28 </div>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698