Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upIFrame load blocker could be incorrectly cleared #10384
Open
Labels
Comments
|
I will look into this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
iframe_load_event_stepsunconditionally terminates any load blocker that currently exists after the iframe's load event has been dispatched. If the load event handler ended up causingnavigate_or_reload_child_browsing_context(by setting thesrcattribute, for example), this will terminate the replacement load blocker before the load is actually complete.We should either be terminating the load blocker before dispatching the
loadevent, or else checking that the element's pipeline ID matches before terminating it.