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

Fix special case for viewport expansion in visibility check #953

Merged
merged 1 commit into from
Mar 26, 2025

Conversation

Zhen3r
Copy link
Contributor

@Zhen3r Zhen3r commented Mar 6, 2025

I've identified an issue in the isTextNodeVisible function where we need to handle the special case when viewportExpansion is set to -1, which should bypass the viewport check entirely.

function isTextNodeVisible(textNode) {
    // ... existing code ...

    // Simple viewport check without scroll calculations
    const isInViewport = !(
      rect.bottom < -viewportExpansion ||
      rect.top > window.innerHeight + viewportExpansion ||
      rect.right < -viewportExpansion ||
      rect.left > window.innerWidth + viewportExpansion
    ) || viewportExpansion === -1; // here

    // ... existing code ...
}

This change ensures that when viewportExpansion is set to -1, the text node will be considered in the viewport regardless of its actual position. This matches the behavior in other parts of the code where a value of -1 for viewportExpansion means "consider all elements regardless of viewport position."

@CLAassistant
Copy link

CLAassistant commented Mar 6, 2025

CLA assistant check
All committers have signed the CLA.

@pirate
Copy link
Member

pirate commented Mar 26, 2025

nice catch, thanks!

@pirate pirate merged commit 8317edd into browser-use:main Mar 26, 2025
1 check passed
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.

3 participants