Changeset 85921 in webkit


Ignore:
Timestamp:
May 5, 2011 11:46:53 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-05 Luke Macpherson <macpherson@chromium.org>

Reviewed by Eric Seidel.

Make CSSPropertySpeak use the correct macro.
https://bugs.webkit.org/show_bug.cgi?id=60335

No tests added as no functionality changed.

  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::applyProperty): Use correct macro for CSSPropertySpeak.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r85918 r85921  
     12011-05-05  Luke Macpherson   <macpherson@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Make CSSPropertySpeak use the correct macro.
     6        https://bugs.webkit.org/show_bug.cgi?id=60335
     7
     8        No tests added as no functionality changed.
     9
     10        * css/CSSStyleSelector.cpp:
     11        (WebCore::CSSStyleSelector::applyProperty):
     12        Use correct macro for CSSPropertySpeak.
     13
    1142011-05-05  Eric Carlson  <eric.carlson@apple.com>
    215
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r85864 r85921  
    54475447        applyPageSizeProperty(value);
    54485448        return;
    5449    
    54505449    case CSSPropertySpeak:
    5451         HANDLE_INHERIT_AND_INITIAL(speak, Speak);
    5452         if (!primitiveValue)
    5453             return;
    5454         m_style->setSpeak(*primitiveValue);
    5455         return;
    5456            
     5450        HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE(speak, Speak);
     5451        return;
    54575452    case CSSPropertyInvalid:
    54585453        return;
    5459 
    54605454    // Directional properties are resolved by resolveDirectionAwareProperty() before the switch.
    54615455    case CSSPropertyWebkitBorderEnd:
Note: See TracChangeset for help on using the changeset viewer.