Changeset 87633 in webkit


Ignore:
Timestamp:
May 28, 2011 9:42:18 PM (13 years ago)
Author:
ap@apple.com
Message:

Suggested by Simon Fraser.

REGRESSION (r85375): Load event is sometimes lost when multiple image elements use the same URL
https://bugs.webkit.org/show_bug.cgi?id=61692
<rdar://problem/9488628>

  • loader/ImageLoader.cpp: (WebCore::ImageLoader::notifyFinished): There was no need to use ASSERT_UNUSED here.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r87628 r87633  
     12011-05-28  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Suggested by Simon Fraser.
     4
     5        REGRESSION (r85375): Load event is sometimes lost when multiple image elements use the same URL
     6        https://bugs.webkit.org/show_bug.cgi?id=61692
     7        <rdar://problem/9488628>
     8
     9        * loader/ImageLoader.cpp: (WebCore::ImageLoader::notifyFinished): There was no need to use
     10        ASSERT_UNUSED here.
     11
    1122011-05-28  Alexey Proskuryakov  <ap@apple.com>
    213
  • trunk/Source/WebCore/loader/ImageLoader.cpp

    r87628 r87633  
    226226{
    227227    ASSERT(m_failedLoadURL.isEmpty());
    228     ASSERT_UNUSED(m_image, resource == m_image.get());
     228    ASSERT(resource == m_image.get());
    229229
    230230    m_imageComplete = true;
Note: See TracChangeset for help on using the changeset viewer.