https://profiler.firefox.com/ plays a "slide-in" transition on page-load (under some CSS classes named homeTransition and similar).
We should put that behind a prefers-reduced-motion media-query check:
https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
...to make this page more accessible for users who've got that flag set (for whom this animation may cause nausea/migraines).
(note: this issue was originally reported at https://bugzilla.mozilla.org/show_bug.cgi?id=1761087 ; I've moved it over here on behalf of the user, since I believe this is where profiler.firefox.com bugs should go.)
https://profiler.firefox.com/ plays a "slide-in" transition on page-load (under some CSS classes named
homeTransitionand similar).We should put that behind a
prefers-reduced-motionmedia-query check:https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
...to make this page more accessible for users who've got that flag set (for whom this animation may cause nausea/migraines).
(note: this issue was originally reported at https://bugzilla.mozilla.org/show_bug.cgi?id=1761087 ; I've moved it over here on behalf of the user, since I believe this is where profiler.firefox.com bugs should go.)