-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Iframe: avoid asset parsing, avoid body replacement, fix script localisation #50913
Closed
Conversation
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
Size Change: -200 B (0%) Total Size: 1.42 MB
ℹ️ View Unchanged
|
ellatrix
force-pushed
the
try/iframe-without-asset-parsing
branch
from
May 25, 2023 08:56
1f2b146
to
02955d6
Compare
ellatrix
added
[Type] Performance
Related to performance efforts
[Type] Code Quality
Issues or PRs that relate to code quality
labels
May 25, 2023
Flaky tests detected in 27b1cc4. 🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/5476698634
|
ellatrix
force-pushed
the
try/iframe-without-asset-parsing
branch
from
May 27, 2023 13:21
0824f10
to
3b22e53
Compare
ellatrix
force-pushed
the
try/iframe-without-asset-parsing
branch
from
May 31, 2023 14:40
9503913
to
e231369
Compare
ellatrix
force-pushed
the
try/iframe-without-asset-parsing
branch
from
July 6, 2023 09:20
e231369
to
9ce9ae1
Compare
ellatrix
changed the title
Iframe: avoid asset parsing
Iframe: avoid asset parsing, avoid body replacement, fix script localisation
Jul 6, 2023
Fixed by #52405 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
[Type] Code Quality
Issues or PRs that relate to code quality
[Type] Performance
Related to performance efforts
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.
What?
Fixes #49655 (comment).
Since we started using
srcDoc
and now a src with a blob, we can simply pass the style and script dependencies we get as HTML. We don't need to parse the HTML separately and then add it through as React elements.Additionally, we should avoid replacing the body element. Scripts should be loaded on page load as they normally would so they can make use of
load
andDOMContentLoaded
events, with the root elements being available and not replaced later.This should also fix script localisation since the browser now handles script loading.
Why?
Simplify, performance.
How?
Testing Instructions
Testing Instructions for Keyboard
Screenshots or screencast