| <!DOCTYPE html> |
| <html> |
| <head> |
| <script src="/js-test-resources/js-test.js"></script> |
| </head> |
| <body> |
| <script> |
| description("Tests the behavior of strict-origin-when-cross-origin referrer policy when same origin."); |
| jsTestIsAsync = true; |
| |
| function checkReferrer(value) { |
| referrer = value; |
| // Should be the full URL because we are same-origin. |
| shouldBeEqualToString("referrer", "http://127.0.0.1:8000/referrer-policy-script/strict-origin-when-cross-origin/same-origin.html"); |
| finishJSTest(); |
| } |
| </script> |
| <script src="http://127.0.0.1:8000/referrer-policy/resources/script.php" referrerpolicy="strict-origin-when-cross-origin"></script> |
| </body> |
| </html> |