Releases pages keep hidden loading spinners animating, pinning a CPU core #202458
Unanswered
jabagawee
asked this question in
Repositories
Replies: 1 comment
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
Body
On repos with a long releases list, the releases index page keeps Chrome busy indefinitely after load, even with the tab idle. The page re-renders continuously at ~70fps and for me Chrome's GPU process sits around half a core. Scrolling to the bottom once makes it drop to idle.
My best guess, taken from a DevTools performance trace: each release row has two lazy
<include-fragment>elements (theexpanded_assetslist and the refs picker), and their placeholder spinners (svg.anim-rotate, with the infiniterotate-keyframesanimation) keep animating while below the fold. Since the fragments don't load until scrolled into view, the spinners animate forever. Blink can't run transform animations on SVG targets on the compositor (the trace reportscompositeFailedwithkTransformRelatedPropertyCannotBeAcceleratedOnTarget), so every frame renders on the main thread. I think the fix would be to pause the animation when it's offscreen.Steps to reproduce:
Seen on Chrome 150.0.7871.129 on macOS 26.5.2 (Apple Silicon); reproduces in a clean guest profile. I tried filing this through the support bug-report form but was redirected here.
Extra question: why is this even dynamically loaded if the Releases page is not infinite scroll? Given that it's paginated, why not just load the entire page in the browser statically?
All reactions