You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
crbug/1372020 provides an example for a site where soft navigations modify the URL, and then animate to a previously hidden part of the page. As such, they are not triggering DOM modifications on their own, but from a user experience, that doesn't matter much. Ideally we can avoid these false negatives.
The text was updated successfully, but these errors were encountered:
The example in question seems to be switching between "tabs" be applying visibility hidden and transform -100% to the tabs content element.
One potential approach could be to expand the heuristic to try and capture visibility changes and/or CSS transforms that impact a large %age of the viewport.
At the same time, I wonder if there's expected work on markup patterns to enable tabs in a more semantic way (that'd be easier to detect)
At the same time, I wonder if there's expected work on markup patterns to enable tabs in a more semantic way (that'd be easier to detect)
OpenUI (and perhaps soon @dbaron) is interested in working on tabs, perhaps by adding something like <tabs>. But this almost surely isn't happening in 2023. So I wouldn't hang your hat on that solving this problem soon, sorry.
crbug/1372020 provides an example for a site where soft navigations modify the URL, and then animate to a previously hidden part of the page. As such, they are not triggering DOM modifications on their own, but from a user experience, that doesn't matter much. Ideally we can avoid these false negatives.
The text was updated successfully, but these errors were encountered: