We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In our application we recently removed unsafe-inline from the CSP headers. With that change we are getting error from the file iframe.js at line 382
unsafe-inline
355: var iframeText = '<iframe id="' + internalID + '" name="' + internalID + '" src="javascript:\'<html></html>\'"';
CSP directive is blocking the use of javascript: URLs within the src attribute of the iframe, as well as the use of inline JavaScript.
javascript: URLs
src
iframe
Is there any plan of fixing of the issue?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In our application we recently removed
unsafe-inline
from the CSP headers. With that change we are getting error from the file iframe.js at line 382CSP directive is blocking the use of
javascript: URLs
within thesrc
attribute of theiframe
, as well as the use of inline JavaScript.Is there any plan of fixing of the issue?
The text was updated successfully, but these errors were encountered: