Index: Source/core/dom/Element.h |
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h |
index 402f4a6dfcd166d29813ad03467cd5a9892752e7..1cfa1f356c7a9cea0dd390fae4c4b3a8bc746e6d 100644 |
--- a/Source/core/dom/Element.h |
+++ b/Source/core/dom/Element.h |
@@ -241,10 +241,10 @@ public: |
// A fast function for checking the local name against another atomic string. |
bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; } |
- const AtomicString& localName() const final { return m_tagName.localName(); } |
+ const AtomicString& localName() const { return m_tagName.localName(); } |
AtomicString localNameForSelectorMatching() const; |
const AtomicString& prefix() const { return m_tagName.prefix(); } |
- const AtomicString& namespaceURI() const final { return m_tagName.namespaceURI(); } |
+ const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); } |
const AtomicString& locateNamespacePrefix(const AtomicString& namespaceURI) const; |