Index: Source/core/rendering/RenderTableCol.h |
diff --git a/Source/core/rendering/RenderTableCol.h b/Source/core/rendering/RenderTableCol.h |
index 2cb1bbc84ffb019a133e914dd33bc7942092ce2d..09554270d57784ef0327067e7f522a2a98899561 100644 |
--- a/Source/core/rendering/RenderTableCol.h |
+++ b/Source/core/rendering/RenderTableCol.h |
@@ -86,7 +86,7 @@ private: |
virtual const RenderObjectChildList* virtualChildren() const OVERRIDE { return children(); } |
virtual const char* renderName() const OVERRIDE { return "RenderTableCol"; } |
- virtual bool isRenderTableCol() const OVERRIDE { return true; } |
+ virtual bool isOfType(RenderObjectType type) const OVERRIDE { return type == RenderObjectRenderTableCol || RenderBox::isOfType(type); } |
virtual void updateFromElement() OVERRIDE; |
virtual void computePreferredLogicalWidths() OVERRIDE { ASSERT_NOT_REACHED(); } |