| Index: Source/core/rendering/RenderBlock.h
|
| diff --git a/Source/core/rendering/RenderBlock.h b/Source/core/rendering/RenderBlock.h
|
| index 2706f41256023fac3fcf9224b90c7eeb41184403..3fc50226610a0e25f2175fd031f2909309aa7147 100644
|
| --- a/Source/core/rendering/RenderBlock.h
|
| +++ b/Source/core/rendering/RenderBlock.h
|
| @@ -124,12 +124,18 @@ public:
|
|
|
| void addPercentHeightDescendant(RenderBox*);
|
| static void removePercentHeightDescendant(RenderBox*);
|
| - TrackedRendererListHashSet* percentHeightDescendants() const;
|
| static bool hasPercentHeightContainerMap();
|
| static bool hasPercentHeightDescendant(RenderBox*);
|
| static void clearPercentHeightDescendantsFrom(RenderBox*);
|
| static void removePercentHeightDescendantIfNeeded(RenderBox*);
|
|
|
| + TrackedRendererListHashSet* percentHeightDescendants() const;
|
| + bool hasPercentHeightDescendants() const
|
| + {
|
| + TrackedRendererListHashSet* descendants = percentHeightDescendants();
|
| + return descendants && !descendants->isEmpty();
|
| + }
|
| +
|
| void setHasMarkupTruncation(bool b) { m_hasMarkupTruncation = b; }
|
| bool hasMarkupTruncation() const { return m_hasMarkupTruncation; }
|
|
|
|
|