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

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

Issue 2230103003: Propagate Origin header via CreateURLRequestForNavigation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify code for converting GURL into WebString representing the origin. Created 4 years, 4 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="text-form" method="POST" action="/cross-site-307/x.com/echoall"> 5 <form id="text-form" method="POST" action="/cross-site-307/i.com/cross-site- 307/x.com/echoall">
Avi (use Gerrit) 2016/08/12 22:54:33 This change doesn't interfere with the existing te
Łukasz Anforowicz 2016/08/12 23:00:30 Correct - it doesn't interfere with the existing t
6 <input type="text" id="text" name="text" value="value"> 6 <input type="text" id="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="/cross-site-307/x.com/echoall" 9 <form id="file-form" method="POST" action="/cross-site-307/x.com/echoall"
10 enctype="multipart/form-data"> 10 enctype="multipart/form-data">
11 <input type="file" id="file" name="file"> 11 <input type="file" id="file" name="file">
12 <input type="submit"> 12 <input type="submit">
13 </form> 13 </form>
14 </body> 14 </body>
15 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698