-
Notifications
You must be signed in to change notification settings - Fork 19.7k
New issue
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
Fix 19570 tree chart not compliant strict csp styles #19717
Open
Manviel
wants to merge
13
commits into
apache:master
Choose a base branch
from
Manviel:fix-19570-tree-chart-not-compliant-strict-csp-styles
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 11 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
2775d0e
fix(tree): add CSP header to track violations. #19570
Manviel bfb0cdd
fix(tree): refactor setContent to get rid of unsafe inline styles. #1…
Manviel 32d1024
fix(tree): refactor wrapBlockHTML to get rid of unsafe-styles. #19570
Manviel ae825a9
fix(tree): refactor getTooltipTextStyle to get rid of unsafe-styles. …
Manviel ab0d920
fix(tree): refactor wrapInlineValueHTML to get rid of unsafe-styles. …
Manviel f623efa
fix(tree): move inline styles into stylesheet to get rid of unsafe st…
Manviel 22e0a59
fix(tree): refactor wrapInlineNameHTML to get rid of unsafe styles. #…
Manviel e35ad60
fix(tree): tweak eslint to allow document methods. #19570
Manviel d967fa0
fix(tree): move basic stylesheet to follow convention. #19570
Manviel 81f3375
fix(tree): refactor getTooltipMarker to get rid of unsafe styles. #19570
Manviel 4136550
fix(tree): refactor assembleArrow to get rid of unsafe styles. #19570
Manviel 22cf47b
fix(heatmap): move Helper Functions Outside of assembleArrow. #19570
Manviel 8221d35
fix(heatmap): update the color names to match the consistent pattern.…
Manviel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enabling a strict policy for the style-src directive in CSP offers several security benefits for your web application:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
styles properties that are set directly on the element's style property will not be blocked, allowing users to safely manipulate styles via JavaScript. e.g. this, document.body.style.background = 'green'; won't cause an unsafe-inline violation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @Ovilia ,
Could you review this PR or help me find the right person?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
met the same issue , insert a styled item to dom will violate the unsafe-inline policy