Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(674)

Unified Diff: Source/core/css/resolver/StyleResolver.cpp

Issue 18764003: Hovered/active/focused will never share style with siblings/cousins. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « PerformanceTests/CSS/FocusUpdate.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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())
« no previous file with comments | « PerformanceTests/CSS/FocusUpdate.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698