Changeset 64535 in webkit
- Timestamp:
- Aug 3, 2010, 1:32:33 AM (15 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r64534 r64535 1 2010-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 1 14 2010-08-02 Pavel Feldman <pfeldman@chromium.org> 2 15 -
trunk/WebCore/page/PageGroup.cpp
r64492 r64535 139 139 void PageGroup::addVisitedLinkHash(LinkHash hash) 140 140 { 141 addVisitedLink(hash); 141 if (shouldTrackVisitedLinks) 142 addVisitedLink(hash); 142 143 } 143 144
Note:
See TracChangeset
for help on using the changeset viewer.