| <!DOCTYPE html> |
| <html> |
| <head> |
| <script src="/js-test-resources/js-test.js"></script> |
| </head> |
| <body> |
| <script> |
| description("Tests the behavior of no-referrer referrer policy when cross origin."); |
| jsTestIsAsync = true; |
| |
| if (window.internals) |
| internals.setResourceLoadStatisticsEnabled(false); |
| |
| window.onmessage = function(event) { |
| referrer = event.data.referrer; |
| // Should be the empty string |
| shouldBeEqualToString("referrer", ""); |
| if (window.internals) |
| internals.setResourceLoadStatisticsEnabled(true); |
| finishJSTest(); |
| } |
| </script> |
| <iframe src="http://localhost:8000/referrer-policy/resources/document.html" referrerpolicy="no-referrer"></iframe> |
| </body> |
| </html> |