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

Side by Side Diff: chrome/test/data/extensions/api_test/webrequest/requestBody/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: No change in code, but with a patch generated without copy detection Created 8 years, 3 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="multipart/form- data">
11 <input name='text"1ěšý人
12 &#x0d;&#x0a;' type="text" value="TEST_TEXT_1" />
13 <input name="text2" type="text" value="TEST_TEXT_2" />
14 <input name="text3" type="text" value="TEST_TEXT_3" />
15 <input name="password" type="password" value="password" />
16 <input name="radio" type="radio" value="Yes" checked /> Yes
17 <input name="radio" type="radio" value="No" /> No
18 <input name="check" type="checkbox" value="option_A" checked /> A
19 <input name="check" type="checkbox" value="option_B" /> B
20 <textarea name="txtarea" rows="2" cols="20">text"1ěšý人
21 &#x0d;&#x0a;</textarea>
22 <select name="select">
23 <option value="one">one</option>
24 <option value="two">two</option>
25 <option value="three">three</option>
26 </select>
27 <input type="submit" />
28 </form>
29 </div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698