| Index: Source/core/dom/Element.h
|
| diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
|
| index 37a662c17dc8b064c4f144671cc5528ee507c081..59739445b632eee36265e55bb00507bcf45f83d8 100644
|
| --- a/Source/core/dom/Element.h
|
| +++ b/Source/core/dom/Element.h
|
| @@ -687,11 +687,6 @@ inline bool isDisabledFormControl(const Node* node)
|
| return node->isElementNode() && toElement(node)->isDisabledFormControl();
|
| }
|
|
|
| -inline bool Node::hasTagName(const QualifiedName& name) const
|
| -{
|
| - return isElementNode() && toElement(this)->hasTagName(name);
|
| -}
|
| -
|
| inline Element* Node::parentElement() const
|
| {
|
| ContainerNode* parent = parentNode();
|
|
|