Changeset 85933 in webkit


Ignore:
Timestamp:
May 6, 2011 12:48:52 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

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

Reviewed by Eric Seidel.

Make CSSStyleSelector::applyProperty() CSSPropertyPointerEvents use the correct macro.
https://bugs.webkit.org/show_bug.cgi?id=60338

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

    r85928 r85933  
     12011-05-06  Luke Macpherson   <macpherson@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Make CSSStyleSelector::applyProperty() CSSPropertyPointerEvents use the correct macro.
     6        https://bugs.webkit.org/show_bug.cgi?id=60338
     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-06  Alexis Menard  <alexis.menard@openbossa.org>
    215
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r85923 r85933  
    54085408            return;
    54095409#endif
    5410         HANDLE_INHERIT_AND_INITIAL(pointerEvents, PointerEvents)
    5411         if (!primitiveValue)
    5412             return;
    5413         m_style->setPointerEvents(*primitiveValue);
     5410        HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE(pointerEvents, PointerEvents)
    54145411        return;
    54155412    }
Note: See TracChangeset for help on using the changeset viewer.