I'm working on a project, that uses a third-party ticketing product which provides iFrames as part of their service. This product's admin portal provides the means to upload resources (css, js, fonts, etc), that are injected into the head of the generated iFrames.
However, I need to be able to style these iFrames and manually re-uploading the necessary resources, each time I want to test something, is obviously far from ideal. I don't have full control of how these iFrames are generated; I do, however, have the option to add custom inline resources into the document head
.
The issue is, whenever I try and include a resource (usually hosted on a test domain), as it's not on the same domain as the iFrame itself, I get the error: Referrer Policy: strict-origin-when-cross-origin
.
Is there any way that I can somehow inject/load a resource that bypasses this?