| Index: Source/core/rendering/RenderSlider.h
|
| diff --git a/Source/core/rendering/RenderSlider.h b/Source/core/rendering/RenderSlider.h
|
| index 39509ab1a1f9eda8bf8b381dd53633a0132533c4..0683856b79dffdd1c227390bf6dda1bbff9d1933 100644
|
| --- a/Source/core/rendering/RenderSlider.h
|
| +++ b/Source/core/rendering/RenderSlider.h
|
| @@ -39,7 +39,7 @@ public:
|
|
|
| private:
|
| virtual const char* renderName() const override { return "RenderSlider"; }
|
| - virtual bool isSlider() const override { return true; }
|
| + virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectSlider || RenderFlexibleBox::isOfType(type); }
|
|
|
| virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const override;
|
| virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const override;
|
|
|