| Index: Source/core/html/HTMLAnchorElement.h
|
| diff --git a/Source/core/html/HTMLAnchorElement.h b/Source/core/html/HTMLAnchorElement.h
|
| index a63c563427e3cd942080d871b18207dce046a008..3687904212093f3617a4d483e41adc4d2fdaff8b 100644
|
| --- a/Source/core/html/HTMLAnchorElement.h
|
| +++ b/Source/core/html/HTMLAnchorElement.h
|
| @@ -98,7 +98,7 @@ public:
|
|
|
| bool hasRel(uint32_t relation) const;
|
| void setRel(const String&);
|
| -
|
| +
|
| LinkHash visitedLinkHash() const;
|
| void invalidateCachedVisitedLinkHash() { m_cachedVisitedLinkHash = 0; }
|
|
|
| @@ -150,7 +150,7 @@ inline LinkHash HTMLAnchorElement::visitedLinkHash() const
|
| {
|
| if (!m_cachedVisitedLinkHash)
|
| m_cachedVisitedLinkHash = WebCore::visitedLinkHash(document()->baseURL(), fastGetAttribute(HTMLNames::hrefAttr));
|
| - return m_cachedVisitedLinkHash;
|
| + return m_cachedVisitedLinkHash;
|
| }
|
|
|
| // Functions shared with the other anchor elements (i.e., SVG).
|
|
|