| Index: Source/core/rendering/RenderFieldset.h
|
| diff --git a/Source/core/rendering/RenderFieldset.h b/Source/core/rendering/RenderFieldset.h
|
| index 3096c568835fb747fa888c99f5de78c0dc8226e1..b0e7c290c3ec318362312225d498f03dec787480 100644
|
| --- a/Source/core/rendering/RenderFieldset.h
|
| +++ b/Source/core/rendering/RenderFieldset.h
|
| @@ -37,7 +37,7 @@ public:
|
|
|
| private:
|
| virtual const char* renderName() const OVERRIDE { return "RenderFieldSet"; }
|
| - virtual bool isFieldset() const OVERRIDE { return true; }
|
| + virtual bool isOfType(RenderObjectType type) const OVERRIDE { return type == RenderObjectFieldset || RenderBlockFlow::isOfType(type); }
|
|
|
| virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&) OVERRIDE;
|
|
|
|
|