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

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

Issue 2014093002: Fix LayoutObject::paintingLayer() about multicol spanner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | third_party/WebKit/Source/core/layout/LayoutObjectTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index 1b5a5a6eebe7e370286f4b30fdfc014dbb480643..3dbd08ba1b38c814c6e685d48b34c51f1e388934 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -628,8 +628,8 @@ PaintLayer* LayoutObject::enclosingLayer() const
PaintLayer* LayoutObject::paintingLayer() const
{
for (const LayoutObject* current = this; current; current = current->isColumnSpanAll() ? current->containingBlock() : current->parent()) {
- if (current->hasLayer())
- return toLayoutBoxModelObject(current)->layer()->enclosingSelfPaintingLayer();
+ if (current->hasLayer() && toLayoutBoxModelObject(current)->layer()->isSelfPaintingLayer())
+ return toLayoutBoxModelObject(current)->layer();
}
return nullptr;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutObjectTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698