Changeset 82799 in webkit


Ignore:
Timestamp:
Apr 3, 2011 9:13:46 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-03 Luke Macpherson <macpherson@chromium.org>

Reviewed by Darin Adler.

Fix 2-space indentation introduced in bug 54706.
https://bugs.webkit.org/show_bug.cgi?id=57740

No new tests - whitespace changes only.

  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::applyProperty): Convert 2-space indentation to 4-space indentation.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r82798 r82799  
     12011-04-03  Luke Macpherson   <macpherson@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Fix 2-space indentation introduced in bug 54706.
     6        https://bugs.webkit.org/show_bug.cgi?id=57740
     7
     8        No new tests - whitespace changes only.
     9
     10        * css/CSSStyleSelector.cpp:
     11        (WebCore::CSSStyleSelector::applyProperty):
     12        Convert 2-space indentation to 4-space indentation.
     13
    1142011-04-03  Luke Macpherson   <macpherson@chromium.org>
    215
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r82503 r82799  
    36343634    // check lookup table for implementations and use when available
    36353635    if (m_applyProperty.implements(property)) {
    3636       if (isInherit)
    3637           m_applyProperty.inherit(property, this);
    3638       else if (isInitial)
    3639           m_applyProperty.initial(property, this);
    3640       else
    3641           m_applyProperty.value(property, this, value);
    3642       return;
     3636        if (isInherit)
     3637            m_applyProperty.inherit(property, this);
     3638        else if (isInitial)
     3639            m_applyProperty.initial(property, this);
     3640        else
     3641            m_applyProperty.value(property, this, value);
     3642        return;
    36433643    }
    36443644
Note: See TracChangeset for help on using the changeset viewer.