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.
@Rich-Harris Thanks for including this!
I have updated to 1.11.2 and tested it out. Unfortunately my original test case failed to test child components (although my version did work for them) and their css was not being added to the correct document.
The problem is that when a child component is mounted, the target element is not yet part of the correct document. It was created using document.createElement, thus
target.ownerDocument
points to the original document (window.document
). Aftermount
, the target element is added to the iframe andtarget.ownerDocument
is pointing to the iframe'sdocument
.I can think of three options for fixing this:
options.target.ownerDocument
and reference it in the child components (my original approach)target.ownerDocument.createElement
)I tried the last by adding a setTimeout around the addCss call:
generator.current.builders.mount.addLine( `setTimeout(function(){ if ( !target.ownerDocument.__sveltecss_${parsed.hash} ) addCss( target.ownerDocument )});` );
It works, but it's hardly ideal. First of all, it breaks all css tests due to it's async nature. Even worse, it triggers multiple style updates and reflows, since every component's css is added independently, instead of all in one go.
So I tried different stuff and finally came up with this solution: add the css after the dom is updated, using a render hook.
P.S. I am fully aware that this is a niche use case, so if the changes have an impact on the overall performance, I am ok with maintaining my own fork with this patch.