[Webkit-unassigned] [Bug 78358] REGRESSION (Safari 5.0.5 - 5.1): Link is not colored as visited if default port number is present

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 13 10:27:14 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=78358





--- Comment #10 from webkitlearner at gmail.com  2012-03-13 10:27:14 PST ---
Hi,

Original API
inline LinkHash HTMLAnchorElement::visitedLinkHash() const
{
    if (!m_cachedVisitedLinkHash)
        m_cachedVisitedLinkHash = WebCore::visitedLinkHash(document()->baseURL(), fastGetAttribute(HTMLNames::hrefAttr));
    return m_cachedVisitedLinkHash; 
}

Modified API
inline LinkHash HTMLAnchorElement::visitedLinkHash() const
{
    if (!m_cachedVisitedLinkHash)
        m_cachedVisitedLinkHash = WebCore::visitedLinkHash(document()->baseURL(), AtomicString(document()->completeURL(fastGetAttribute(HTMLNames::hrefAttr).string()).string().utf8().data()));
    return m_cachedVisitedLinkHash; 
}

Not able to download the webkit code as the server is slow , to submit the patch currently im working on nightly build code.

Kindly let me know any other way to submit the patch.

~Webkit Learner

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list