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

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

Issue 2062523002: Fixing renderer's access to a file from HTTP POST (after a xsite transfer). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed the new (redundant) access check from RDHI. Created 4 years, 6 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 <!DOCTYPE html>
2 <html>
3 <head></head>
4 <body>
5 <form id="text-form" method="POST" action="/cross-site-307/x.com/echoall">
6 <input type="text" id="text" name="text" value="value">
7 <input type="submit">
8 </form>
9 <form id="file-form" method="POST" action="/cross-site-307/x.com/echoall"
10 enctype="multipart/form-data">
11 <input type="file" id="file" name="file">
12 <input type="submit">
13 </form>
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698