Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jwgmeligmeyling
Copy link

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 with about:blank.

I have found that reattaching the frame on the load event on the frame solves the issue. I am open for better suggestions fixing this.

Fixes #6475

Copy link

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.

@github-actions github-actions bot added the stale Used by https://github.com/probot/stale to label stale issues and pull requests before closing them label Aug 27, 2024
@github-actions github-actions bot closed this Sep 2, 2024
@robertknight robertknight reopened this Sep 2, 2024
@github-actions github-actions bot closed this Sep 8, 2024
@robertknight robertknight reopened this Sep 8, 2024
Copy link

codecov bot commented Sep 8, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.50%. Comparing base (f4e5e98) to head (9e3cc94).
Report is 433 commits behind head on main.

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.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions github-actions bot closed this Sep 14, 2024
@robertknight robertknight reopened this Sep 14, 2024
@github-actions github-actions bot closed this Sep 20, 2024
@jwgmeligmeyling
Copy link
Author

@robertknight no interest in this fix?

@robertknight robertknight reopened this Mar 6, 2025
@robertknight robertknight removed the stale Used by https://github.com/probot/stale to label stale issues and pull requests before closing them label Mar 6, 2025
@robertknight robertknight changed the title [#6475] Whenever an iframe changes location Hypothesis needs to be injected again Whenever an iframe changes location Hypothesis needs to be injected again Mar 17, 2025
robertknight added a commit that referenced this pull request Mar 17, 2025
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.
@robertknight
Copy link
Member

@robertknight no interest in this fix?

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 load handler to the frame on every _addFrame call, and that handler is never removed.

robertknight added a commit that referenced this pull request Mar 17, 2025
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);
Copy link
Author

@jwgmeligmeyling jwgmeligmeyling Mar 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@robertknight

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);
    }
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Whenever an iframe changes location Hypothesis needs to be injected again
2 participants