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

Side by Side Diff: chrome/test/data/referrer_policy/referrer-policy-iframe.html

Issue 135973009: Don't try to guess the referrer policy, but use the one associated with the request (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta name="referrer" content="origin" />
5 </head>
6 <body>
7 <script>
8 var port = document.location.search.substr(1);
9
10 var frame = document.createElement("iframe");
11 frame.src = "http://127.0.0.1:" + port + "/files/referrer-policy-log.html";
12 frame.onload = function() { document.title = "loaded"; };
13 document.body.appendChild(frame);
14 </script>
15 </body>
16 </html>
OLDNEW
« no previous file with comments | « chrome/browser/referrer_policy_browsertest.cc ('k') | chrome/test/data/referrer_policy/referrer-policy-start.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698