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

Unified Diff: Source/core/layout/LayoutObject.cpp

Issue 1333373002: Merge 202060 "Invalidate all non-composited descendants on fixed..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2454/
Patch Set: Created 5 years, 3 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 | « LayoutTests/platform/mac/fast/forms/submit/submit-focus-by-mouse-then-keydown-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObject.cpp
===================================================================
--- Source/core/layout/LayoutObject.cpp (revision 202148)
+++ Source/core/layout/LayoutObject.cpp (working copy)
@@ -3263,7 +3263,7 @@
explicit Functor(const LayoutBoxModelObject& paintInvalidationContainer) : m_paintInvalidationContainer(paintInvalidationContainer) { }
void operator()(LayoutObject& object) const override
{
- m_paintInvalidationContainer.invalidateDisplayItemClientOnBacking(object);
+ object.invalidateDisplayItemClients(m_paintInvalidationContainer);
}
private:
const LayoutBoxModelObject& m_paintInvalidationContainer;
« no previous file with comments | « LayoutTests/platform/mac/fast/forms/submit/submit-focus-by-mouse-then-keydown-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698