Index: Source/core/rendering/RenderTableSection.h |
diff --git a/Source/core/rendering/RenderTableSection.h b/Source/core/rendering/RenderTableSection.h |
index 8d67b733ad332a1e09e0c3f3c019d89291ffbe29..e5781110b623474bbc4b5d4faff43cd5c90a252b 100644 |
--- a/Source/core/rendering/RenderTableSection.h |
+++ b/Source/core/rendering/RenderTableSection.h |
@@ -245,7 +245,7 @@ private: |
virtual const char* renderName() const override { return (isAnonymous() || isPseudoElement()) ? "RenderTableSection (anonymous)" : "RenderTableSection"; } |
- virtual bool isTableSection() const override { return true; } |
+ virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectTableSection || RenderBox::isOfType(type); } |
virtual void willBeRemovedFromTree() override; |