-
Notifications
You must be signed in to change notification settings - Fork 204
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
Whenever an iframe changes location Hypothesis needs to be injected again #6476
base: main
Are you sure you want to change the base?
Conversation
…s to be injected again
This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6476 +/- ##
==========================================
+ Coverage 99.43% 99.50% +0.07%
==========================================
Files 271 275 +4
Lines 10238 11978 +1740
Branches 2425 3023 +598
==========================================
+ Hits 10180 11919 +1739
- Misses 58 59 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@robertknight no interest in this fix? |
Add prev/next page to demo page at http://localhost:3000/document/parent-frame. This enables testing what happens when an iframe with an `enable-annotation` attribute navigates. Currently you lose the ability to annotate in the iframe, because the client is not re-injected. Related to #6476.
Sorry, we have been preoccupied by other things. When testing these changes manually in #6902 I found it was possible to get into a state where the client would be injected multiple times into the same iframe, causing the browser to get progressively slower after each navigation as more and more instances of the client try to load into the injected frame. From a quick glance it looks like this is happening because this PR will attach an additional |
Add prev/next page to demo page at http://localhost:3000/document/parent-frame. This enables testing what happens when an iframe with an `enable-annotation` attribute navigates. Currently you lose the ability to annotate in the iframe, because the client is not re-injected. Related to #6476.
@@ -69,6 +69,9 @@ export class FrameObserver { | |||
frameWindow!.addEventListener('unload', () => { | |||
this._removeFrame(frame); | |||
}); | |||
frame.addEventListener('load', () => { | |||
this._addFrame(frame); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a fix could be to prepend:
if (this._annotatableFrames.contains(frame)) {
this._removeFrame(frame)
}
We could also make _removeFrame
more defensive:
private _removeFrame(frame: HTMLIFrameElement) {
if (this._annotatableFrames.delete(frame)) {
this._onFrameRemoved(frame);
}
}
When enabling annotations on an iframe with the
enable-annotation
attribute, it appears the client is only injected once. This leads to issues when the frame navigates to another page. I haven't checked whether the issue exists for all types of navigation (for example if it matters if the parent or the frame itself is causing the navigation). In this particular case the frame was initialised withabout:blank
.I have found that reattaching the frame on the
load
event on theframe
solves the issue. I am open for better suggestions fixing this.Fixes #6475