Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <meta name="referrer" content="origin" /> | |
| 4 <script> | |
| 5 function runTest() { | |
| 6 var matches = | |
| 7 RegExp(/\?ssl_port=(.*)&port=(.*)/).exec(document.location.search); | |
| 8 document.location = | |
| 9 "https://127.0.0.1:" + matches[1] + "/server-redirect?" + | |
| 10 "http://127.0.0.1:" + matches[2] + "/files/referrer-policy-log.html"; | |
| 11 } | |
| 12 </script> | |
| 13 </head> | |
| 14 <body onload="runTest()"> | |
| 15 </body> | |
| 16 </html> | |
| OLD | NEW |