Changeset 64535 in webkit


Ignore:
Timestamp:
Aug 3, 2010, 1:32:33 AM (15 years ago)
Author:
ap@apple.com
Message:

Unreviewed (emergency test fix).

REGRESSION (r64518): Most regression tests fail on ASSERT(shouldTrackVisitedLinks)
on Snow Leopard.

Platforms that use strategies now use a different code path than others, and that code path
lacks necessary checks. We don't have a Snow Leopard debug buildbot.

  • page/PageGroup.cpp: (WebCore::PageGroup::addVisitedLinkHash): The private version of addVisitedLink() must not be called when we're not tracking visited links.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64534 r64535  
     12010-08-03  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Unreviewed (emergency test fix).
     4
     5        REGRESSION (r64518): Most regression tests fail on ASSERT(shouldTrackVisitedLinks)
     6        on Snow Leopard.
     7
     8        Platforms that use strategies now use a different code path than others, and that code path
     9        lacks necessary checks. We don't have a Snow Leopard debug buildbot.
     10
     11        * page/PageGroup.cpp: (WebCore::PageGroup::addVisitedLinkHash): The private version of
     12        addVisitedLink() must not be called when we're not tracking visited links.
     13
    1142010-08-02  Pavel Feldman  <pfeldman@chromium.org>
    215
  • trunk/WebCore/page/PageGroup.cpp

    r64492 r64535  
    139139void PageGroup::addVisitedLinkHash(LinkHash hash)
    140140{
    141     addVisitedLink(hash);
     141    if (shouldTrackVisitedLinks)
     142        addVisitedLink(hash);
    142143}
    143144
Note: See TracChangeset for help on using the changeset viewer.