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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 2437303002: Fix unscrollable scrollers after closing a <dialog>. (Closed)
Patch Set: address review comments Created 4 years, 2 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
Index: third_party/WebKit/Source/core/layout/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index c4cf35150e68a740cc9b2c61775d1e1e8db32475..7e63ae8ebb44d9a41b88422c9d8c8227d48e47bd 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -1505,9 +1505,9 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
!isInert();
}
+ // Warning: inertness can change without causing relayout.
bool visibleToHitTesting() const {
- return style()->visibility() == EVisibility::Visible &&
- style()->pointerEvents() != PE_NONE && !isInert();
+ return style()->visibleToHitTesting() && !isInert();
}
// Map points and quads through elements, potentially via 3d transforms. You

Powered by Google App Engine
This is Rietveld 408576698