Bug 1685123 implementation of WebEx manifest sandbox#30031
Open
rebloor wants to merge 2 commits into
Open
Conversation
Contributor
|
Tip: Review these changes grouped by change (recommended for most PRs), or grouped by feature (for large PRs). |
Rob--W
reviewed
Jul 25, 2026
| "opera": "mirror", | ||
| "safari": { | ||
| "version_added": false | ||
| "version_added": "15.4" |
Member
There was a problem hiding this comment.
Safari does not support the sandbox feature not the corresponding content_security_policy.sandbox key.
Suggested change
| "version_added": "15.4" | |
| "version_added": false |
| "firefox_android": "mirror", | ||
| "opera": "mirror", | ||
| "safari": { | ||
| "version_added": "15.4" |
Member
There was a problem hiding this comment.
Suggested change
| "version_added": "15.4" | |
| "version_added": false |
| "firefox_android": "mirror", | ||
| "opera": "mirror", | ||
| "safari": { | ||
| "version_added": "15.4" |
Member
There was a problem hiding this comment.
Suggested change
| "version_added": "15.4" | |
| "version_added": false |
| "__compat": { | ||
| "support": { | ||
| "chrome": { | ||
| "version_added": "≤22" |
Member
There was a problem hiding this comment.
Chrome 21: https://source.chromium.org/chromium/chromium/src/+/dbb2416d77c8794278aa9e5c396addffee3025d0
https://source.chromium.org/chromium/chromium/src/+/dbb2416d77c8794278aa9e5c396addffee3025d0:chrome/VERSION
Suggested change
| "version_added": "≤22" | |
| "version_added": "21" |
| "__compat": { | ||
| "support": { | ||
| "chrome": { | ||
| "version_added": "≤22", |
Member
There was a problem hiding this comment.
Suggested change
| "version_added": "≤22", | |
| "version_added": "21", |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Add details of the
sandboxmanifest key and updates thecontent_security_policykey for Bug 1685123 "implement manifest sandbox support".Details for Safari were based on release notes for 15.4 (resolved issues section)
Details for Chrome were based on a search that concluded that the sandboxingEval/sandbox docs page existed as of September 18, 2012. Chrome 22 was released September 25, 2012, and its release notes list "new-style packaged apps enabled by default" as a feature, packaged apps being the use case the sandbox key was built for (isolated origin, CSP with eval allowed).
Related issues
MDN content changes in PR mdn/content#44709