Changeset 142472 in webkit


Ignore:
Timestamp:
Feb 11, 2013 7:44:27 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[QT] Regression (r142444): Broke qt linux minimal build
https://bugs.webkit.org/show_bug.cgi?id=109423

Patch by Alexander Shalamov <alexander.shalamov@intel.com> on 2013-02-11
Reviewed by Kenneth Rohde Christiansen.

Test: cssom/cssvalue-comparison.html

  • css/CSSValue.cpp:

(WebCore::CSSValue::equals):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r142471 r142472  
     12013-02-11  Alexander Shalamov  <alexander.shalamov@intel.com>
     2
     3        [QT] Regression (r142444): Broke qt linux minimal build
     4        https://bugs.webkit.org/show_bug.cgi?id=109423
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Test: cssom/cssvalue-comparison.html
     9
     10        * css/CSSValue.cpp:
     11        (WebCore::CSSValue::equals):
     12
    1132013-02-11  Andrey Lushnikov  <lushnikov@chromium.org>
    214
  • trunk/Source/WebCore/css/CSSValue.cpp

    r142457 r142472  
    370370            return compareCSSValues<WebKitCSSSVGDocumentValue>(*this, other);
    371371#endif
     372        default:
     373            ASSERT_NOT_REACHED();
     374            return false;
    372375        }
    373         ASSERT_NOT_REACHED();
    374376    } else if (m_classType == ValueListClass && other.m_classType != ValueListClass)
    375377        return static_cast<const CSSValueList*>(this)->equals(other);
Note: See TracChangeset for help on using the changeset viewer.