Index: Source/WebCore/rendering/RenderObject.h |
=================================================================== |
--- Source/WebCore/rendering/RenderObject.h (revision 109406) |
+++ Source/WebCore/rendering/RenderObject.h (working copy) |
@@ -362,16 +362,6 @@ |
static inline bool isAfterContent(const RenderObject* obj) { return obj && obj->isAfterContent(); } |
static inline bool isBeforeOrAfterContent(const RenderObject* obj) { return obj && obj->isBeforeOrAfterContent(); } |
- inline RenderObject* anonymousContainer(RenderObject* child) |
- { |
- RenderObject* container = child; |
- while (container->parent() != this) |
- container = container->parent(); |
- |
- ASSERT(container->isAnonymous()); |
- return container; |
- } |
- |
bool childrenInline() const { return m_childrenInline; } |
void setChildrenInline(bool b) { m_childrenInline = b; } |
bool hasColumns() const { return m_hasColumns; } |