-
Notifications
You must be signed in to change notification settings - Fork 524
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
Scroll as a User Gesture in RWS #200
Comments
I don't think I understand the problem here. The If you're trying to measure reach using a cross-site embed, and your use case doesn't fit into an RWS (e.g. because your embed needs to be embedded on more than 6 sites), then you could consider using other Privacy Sandbox proposals like Shared Storage to measure reach in a privacy-preserving way. |
Chris, I am just talking about embedding needs up to 5, but the requestStorageAccessFor method which grants permission to write third-party cookies in a related-site restricted domain needs a user gesture to be triggered which currently is restricted to 'keydown', 'mousedown', 'pointerdown', 'pointerup', 'touchend' events. There are some cases where a User of Site A visits Site B and just scrolls the content of that site and leaves without doing the above-mentioned gesture he would be left untracked or considered as another user by the system. What I am suggesting is if a user visits some percentage of the page he visits, the requestStorageAccessFor method should be permitted to read and write third-party cookies |
I see, you're asking if RWS can treat scroll events as "user interaction", in addition to the event types that have traditionally counted as user interaction on the web platform (HTML specification), for the purposes of the Unfortunately, I don't think that is a good option, for a few reasons:
There may be more issues that I haven't thought of, but these are enough to convince me that we should not consider scroll events for |
Why do you even need the user interaction at all for
Are you experiencing otherwise? Or did you not setup RWS and you're just using SAA without RWS? |
The
It's tricky to document this in an unambiguous way, but the auto-granting behavior described here means that Chrome will accept the permission request on the user's behalf (without prompting the user), provided that all of the other requirements (e.g. that the caller is the top-level document, that the Having a transient user activation is one of the baseline requirements that Chrome checks before deciding to accept or reject the request on the user's behalf. |
Context
The Related-Website-Set (RWS) comprises a network of websites belonging to the same organization. While ensuring stringent data privacy protocols, there is a need to provide organizations with more detailed insights about users within the limited ecosystem that FPS has restricted to.
The Case for Scroll as a User Gesture-
Proposed Implementation Strategy
Event-Driven Tracking: Implement scroll depth tracking to capture user engagement at various thresholds (25%, 50%, 75%, 100%).
The text was updated successfully, but these errors were encountered: