| Index: Source/core/rendering/RenderTableRow.h
|
| diff --git a/Source/core/rendering/RenderTableRow.h b/Source/core/rendering/RenderTableRow.h
|
| index b92cd772be3e0c7d0a473250c70acd9b940c456d..0729a332a4ea7c24a3a2531fb9f7f79407c2ab85 100644
|
| --- a/Source/core/rendering/RenderTableRow.h
|
| +++ b/Source/core/rendering/RenderTableRow.h
|
| @@ -99,7 +99,7 @@ private:
|
|
|
| virtual const char* renderName() const OVERRIDE { return (isAnonymous() || isPseudoElement()) ? "RenderTableRow (anonymous)" : "RenderTableRow"; }
|
|
|
| - virtual bool isTableRow() const OVERRIDE { return true; }
|
| + virtual bool isOfType(RenderObjectType type) const OVERRIDE { return type == RenderObjectTableRow || RenderBox::isOfType(type); }
|
|
|
| virtual void willBeRemovedFromTree() OVERRIDE;
|
|
|
|
|