Changeset 133324 in webkit


Ignore:
Timestamp:
Nov 2, 2012, 11:53:00 AM (12 years ago)
Author:
ojan@chromium.org
Message:

Fix silly mistake from http://trac.webkit.org/changeset/133315.
Forgot to remove the "!".

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::canShareStyleWithElement):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r133323 r133324  
     12012-11-02  Ojan Vafai  <ojan@chromium.org>
     2
     3        Fix silly mistake from http://trac.webkit.org/changeset/133315.
     4        Forgot to remove the "!".
     5
     6        * css/StyleResolver.cpp:
     7        (WebCore::StyleResolver::canShareStyleWithElement):
     8
    192012-11-02  Tom Sepez  <tsepez@chromium.org>
    210
  • trunk/Source/WebCore/css/StyleResolver.cpp

    r133315 r133324  
    12151215#if ENABLE(PROGRESS_ELEMENT)
    12161216    if (element->hasTagName(progressTag)) {
    1217         ASSERT(!m_element->hasTagName(progressTag));
     1217        ASSERT(m_element->hasTagName(progressTag));
    12181218        HTMLProgressElement* thisProgressElement = static_cast<HTMLProgressElement*>(element);
    12191219        HTMLProgressElement* otherProgressElement = static_cast<HTMLProgressElement*>(m_element);
Note: See TracChangeset for help on using the changeset viewer.