| Index: Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
|
| index 6e0863ccab6260d75498f8439f6e282e13a90666..4fcdf47c7c9f2bf82eb21bf9dc3798ebbfc51f6b 100644
|
| --- a/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -818,6 +818,15 @@ RenderStyle* StyleResolver::locateSharedStyle()
|
| // Ids stop style sharing if they show up in the stylesheets.
|
| if (state.styledElement()->hasID() && m_features.idsInRules.contains(state.styledElement()->idForStyleResolution().impl()))
|
| return 0;
|
| + // Active and hovered elements always make a chain towards the document node
|
| + // and no siblings or cousins will have the same state.
|
| + if (state.styledElement()->hovered())
|
| + return 0;
|
| + if (state.styledElement()->active())
|
| + return 0;
|
| + // There is always only one focused element.
|
| + if (state.styledElement()->focused())
|
| + return 0;
|
| if (parentElementPreventsSharing(state.element()->parentElement()))
|
| return 0;
|
| if (state.styledElement()->hasScopedHTMLStyleChild())
|
|
|