| Index: Source/core/rendering/RenderListItem.h
|
| diff --git a/Source/core/rendering/RenderListItem.h b/Source/core/rendering/RenderListItem.h
|
| index da063bf891bb705fa599f99ddca30649884192e0..1b51a4e6703c08e2bff98c0cad380c55b4999fe1 100644
|
| --- a/Source/core/rendering/RenderListItem.h
|
| +++ b/Source/core/rendering/RenderListItem.h
|
| @@ -58,7 +58,7 @@ public:
|
| private:
|
| virtual const char* renderName() const OVERRIDE { return "RenderListItem"; }
|
|
|
| - virtual bool isListItem() const OVERRIDE { return true; }
|
| + virtual bool isOfType(RenderObjectType type) const OVERRIDE { return type == RenderObjectListItem || RenderBlockFlow::isOfType(type); }
|
|
|
| virtual void willBeDestroyed() OVERRIDE;
|
|
|
|
|