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

Side by Side Diff: content/test/data/form_that_posts_to_echoall.html

Issue 2902933002: Verify all files in the request body are accessible by the renderer process. (Closed)
Patch Set: Fixes based on Nick's review. Created 3 years, 7 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head></head> 3 <head></head>
4 <body> 4 <body>
5 <form id="form" method="POST" action="/echoall"> 5 <form id="form" method="POST" action="/echoall">
6 <input type="text" name="text" value="value"> 6 <input type="text" name="text" value="value">
7 <input type="submit"> 7 <input type="submit">
8 </form> 8 </form>
9 <form id="file-form" method="POST" action="/echoall" enctype="multipart/form -data">
10 <input type="file" id="file" name="file">
11 <input type="submit">
12 </form>
9 </body> 13 </body>
10 </html> 14 </html>
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | tools/metrics/histograms/enums.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698