Ignore:
Timestamp:
Oct 16, 2015, 1:29:41 PM (10 years ago)
Author:
[email protected]
Message:

ASSERT in imported/blink/fast/block/float/overhanging-float-crashes-when-sibling-becomes-formatting-context.html
https://bugs.webkit.org/show_bug.cgi?id=150249

Reviewed by Myles Maxfield.

Covered by existing tests.

  • css/CSSValue.cpp:

(WebCore::CSSValue::equals):
Make sure the "unset" value has an equals implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSValue.cpp

    r191151 r191201  
    202202        case InitialClass:
    203203            return compareCSSValues<CSSInitialValue>(*this, other);
     204        case UnsetClass:
     205            return compareCSSValues<CSSUnsetValue>(*this, other);
    204206#if ENABLE(CSS_GRID_LAYOUT)
    205207        case GridLineNamesClass:
Note: See TracChangeset for help on using the changeset viewer.