diff --git a/components/style/sharing/mod.rs b/components/style/sharing/mod.rs index c7be23572c6..0675359ed77 100644 --- a/components/style/sharing/mod.rs +++ b/components/style/sharing/mod.rs @@ -766,6 +766,11 @@ impl StyleSharingCache { return None; } + if target.element.has_animations() { + trace!("Miss: Has Animations"); + return None; + } + if target.matches_user_and_author_rules() != candidate.element.matches_user_and_author_rules() {