Index: Source/core/rendering/RenderTable.h |
diff --git a/Source/core/rendering/RenderTable.h b/Source/core/rendering/RenderTable.h |
index 62cece692b7145b6a85986850e0eb009b8f49ea1..acd7d596045f19c1c6f264ace51843b2114d1f78 100644 |
--- a/Source/core/rendering/RenderTable.h |
+++ b/Source/core/rendering/RenderTable.h |
@@ -287,7 +287,7 @@ protected: |
private: |
virtual const char* renderName() const OVERRIDE { return "RenderTable"; } |
- virtual bool isTable() const OVERRIDE { return true; } |
+ virtual bool isOfType(RenderObjectType type) const OVERRIDE { return type == RenderObjectTable || RenderBlock::isOfType(type); } |
virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE; |
virtual void paintObject(PaintInfo&, const LayoutPoint&) OVERRIDE; |