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

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

Issue 1171673002: Have LayoutObject::decoratedName() decorate for multicol spanners. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Verboten to access style() here, apparently. Call spannerPlaceholder() instead, then. 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 | « no previous file | 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 9b76a8877e6b7d9990a3cbe82991cdb83e062057..e4356a21a75ffc82e7fb456b94499f6274e4ab15 100644
--- a/Source/core/layout/LayoutObject.cpp
+++ b/Source/core/layout/LayoutObject.cpp
@@ -1096,6 +1096,8 @@ String LayoutObject::decoratedName() const
name.append(" (relative positioned)");
if (isFloating())
name.append(" (floating)");
+ if (spannerPlaceholder())
+ name.append(" (column spanner)");
return name.toString();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698