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

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

Issue 1164723004: Remove block continuation support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/layout/LayoutObject.h ('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
diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
index b2dd0cfcc2827188b9e9e9a21935dcff4e8e59ac..02136cb7a7bae8e31da6f3e93162eab23148b6ba 100644
--- a/Source/core/layout/LayoutObject.cpp
+++ b/Source/core/layout/LayoutObject.cpp
@@ -1090,12 +1090,6 @@ String LayoutObject::decoratedName() const
if (isAnonymous())
name.append(" (anonymous)");
- if (style()) {
- if (isAnonymousColumnsBlock())
- name.append(" (anonymous multi-column)");
- if (isAnonymousColumnSpanBlock())
- name.append(" (anonymous multi-column span)");
- }
if (isOutOfFlowPositioned())
name.append(" (positioned)");
if (isRelPositioned())
@@ -2559,9 +2553,6 @@ void LayoutObject::destroyAndCleanupAnonymousWrappers()
// A flow thread is tracked by its containing block. Whether its children are removed or not is irrelevant.
if (destroyRootParent->isLayoutFlowThread())
break;
- // Column spans are tracked elsewhere.
- if (destroyRootParent->isAnonymousColumnSpanBlock())
- break;
if (destroyRootParent->slowFirstChild() != destroyRoot || destroyRootParent->slowLastChild() != destroyRoot)
break; // Need to keep the anonymous parent, since it won't become empty by the removal of this layoutObject.
« no previous file with comments | « Source/core/layout/LayoutObject.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698