Set iframe sandbox flags before child navigable creation#12360
Merged
domfarolino merged 1 commit intowhatwg:mainfrom Apr 14, 2026
Merged
Set iframe sandbox flags before child navigable creation#12360domfarolino merged 1 commit intowhatwg:mainfrom
domfarolino merged 1 commit intowhatwg:mainfrom
Conversation
The initial about:blank document inherits sandbox flags when the child navigable is created. Parse the iframe sandbox attribute first so the initial child document gets the correct sandbox state.
domfarolino
approved these changes
Apr 12, 2026
Member
domfarolino
left a comment
There was a problem hiding this comment.
Nice catch, it's surprising that this was overlooked. I edited the OP to mark Gecko as "already implemented" with the exception of the contextual fragment edge case you linked to, since Gecko implements this correctly in the general case 1. Anyways, I think this LGTM.
Footnotes
-
For example, if you load
data:text/html,<iframe id=iframe sandbox=allow-same-origin></iframe>in the address bar and then try and runiframe.contentDocument.write('<script>console.log(1)</script>')in the DevTools, the script doesn't run. Gecko only seems to fail the contextual fragment edge case above, so I think that's worth calling out as an exception. ↩
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.
The initial about:blank document inherits sandbox flags when the child navigable is created. Parse the iframe sandbox attribute first so the initial child document gets the correct sandbox state.
(See WHATWG Working Mode: Changes for more details.)
/iframe-embed-object.html ( diff )