| Index: Source/core/rendering/RenderTable.h
|
| diff --git a/Source/core/rendering/RenderTable.h b/Source/core/rendering/RenderTable.h
|
| index 65a832e64edd1425ea5d943850768b4b205e6e35..c1c357ec63a7dcfa3d0b0c72bde16c37c564112b 100644
|
| --- a/Source/core/rendering/RenderTable.h
|
| +++ b/Source/core/rendering/RenderTable.h
|
| @@ -285,7 +285,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;
|
|
|