Changeset 109525 in webkit


Ignore:
Timestamp:
Mar 2, 2012 12:50:08 AM (12 years ago)
Author:
macpherson@chromium.org
Message:

Handle CSSPropertyWebkitColorCorrection in CSSStyleApplyProperty.
https://bugs.webkit.org/show_bug.cgi?id=80056

Reviewed by Eric Seidel.

No new tests / refactoring only.

  • css/CSSStyleApplyProperty.cpp:

(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109521 r109525  
     12012-03-02  Luke Macpherson   <macpherson@chromium.org>
     2
     3        Handle CSSPropertyWebkitColorCorrection in CSSStyleApplyProperty.
     4        https://bugs.webkit.org/show_bug.cgi?id=80056
     5
     6        Reviewed by Eric Seidel.
     7
     8        No new tests / refactoring only.
     9
     10        * css/CSSStyleApplyProperty.cpp:
     11        (WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):
     12        * css/CSSStyleSelector.cpp:
     13        (WebCore::CSSStyleSelector::collectMatchingRulesForList):
     14
    1152012-03-02  John Bauman  <jbauman@chromium.org>
    216
  • trunk/Source/WebCore/css/CSSStyleApplyProperty.cpp

    r109488 r109525  
    18261826    setPropertyHandler(CSSPropertyWebkitBoxOrient, ApplyPropertyDefault<EBoxOrient, &RenderStyle::boxOrient, EBoxOrient, &RenderStyle::setBoxOrient, EBoxOrient, &RenderStyle::initialBoxOrient>::createHandler());
    18271827    setPropertyHandler(CSSPropertyWebkitBoxPack, ApplyPropertyDefault<EBoxPack, &RenderStyle::boxPack, EBoxPack, &RenderStyle::setBoxPack, EBoxPack, &RenderStyle::initialBoxPack>::createHandler());
     1828    setPropertyHandler(CSSPropertyWebkitColorCorrection, ApplyPropertyDefault<ColorSpace, &RenderStyle::colorSpace, ColorSpace, &RenderStyle::setColorSpace, ColorSpace, &RenderStyle::initialColorSpace>::createHandler());
    18281829    setPropertyHandler(CSSPropertyWebkitColumnAxis, ApplyPropertyDefault<ColumnAxis, &RenderStyle::columnAxis, ColumnAxis, &RenderStyle::setColumnAxis, ColumnAxis, &RenderStyle::initialColumnAxis>::createHandler());
    18291830    setPropertyHandler(CSSPropertyWebkitColumnCount, ApplyPropertyAuto<unsigned short, &RenderStyle::columnCount, &RenderStyle::setColumnCount, &RenderStyle::hasAutoColumnCount, &RenderStyle::setHasAutoColumnCount>::createHandler());
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r109488 r109525  
    36453645    }
    36463646#endif
    3647     case CSSPropertyWebkitColorCorrection:
    3648         HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE(colorSpace, ColorSpace);
    3649         return;
    36503647    case CSSPropertyInvalid:
    36513648        return;
     
    39683965    case CSSPropertyWebkitBoxOrient:
    39693966    case CSSPropertyWebkitBoxPack:
     3967    case CSSPropertyWebkitColorCorrection:
    39703968    case CSSPropertyWebkitColumnAxis:
    39713969    case CSSPropertyWebkitColumnCount:
Note: See TracChangeset for help on using the changeset viewer.