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

Unified Diff: Source/core/input/EventHandler.cpp

Issue 1317533002: Sibling invalidation sets (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: CORE_EXPORT Created 5 years, 4 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 | « Source/core/dom/shadow/SelectRuleFeatureSet.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/input/EventHandler.cpp
diff --git a/Source/core/input/EventHandler.cpp b/Source/core/input/EventHandler.cpp
index 6576d80a2cda5b3473038540772187d121609094..c0b83918d6846fb726df0f10f6e43294b4b6c6ba 100644
--- a/Source/core/input/EventHandler.cpp
+++ b/Source/core/input/EventHandler.cpp
@@ -2115,8 +2115,13 @@ bool EventHandler::handleGestureTap(const GestureEventWithHitTestResults& target
bool swallowed = swallowMouseDownEvent | swallowMouseUpEvent | swallowClickEvent;
if (!swallowed && tappedNode && m_frame->page()) {
- bool domTreeChanged = preDispatchDomTreeVersion != m_frame->document()->domTreeVersion();
- bool styleChanged = preDispatchStyleVersion != m_frame->document()->styleVersion();
+ Document* document = m_frame->document();
+ bool domTreeChanged = preDispatchDomTreeVersion != document->domTreeVersion();
+ bool styleChanged = preDispatchStyleVersion != document->styleVersion();
+ if (!styleChanged) {
+ if (Element* documentElement = document->documentElement())
+ styleChanged = documentElement->childNeedsStyleInvalidation();
Eric Willigers 2015/08/31 06:40:43 WebViewTest.ShowUnhandledTapUIIfNeededWithMutateSt
+ }
IntPoint tappedPositionInViewport = m_frame->page()->frameHost().visualViewport().rootFrameToViewport(tappedPosition);
m_frame->chromeClient().showUnhandledTapUIIfNeeded(tappedPositionInViewport, tappedNode.get(), domTreeChanged || styleChanged);
« no previous file with comments | « Source/core/dom/shadow/SelectRuleFeatureSet.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698