Is there a way to define a content-security-policy
header specifying it should trust inline scripts/styles created from a source domain that is already whitelisted?
For instance I have the following header:
Content-Security-Policy: script-src https://www.somesite.com
From this site I load https://www.somesite.com/somescript.js
which in turn dynamically creates inline styles and scripts without needing a hash or nonce.
Is this possible?