Changeset 76659 in webkit


Ignore:
Timestamp:
Jan 25, 2011 7:19:57 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-01-25 Ilya Sherman <isherman@chromium.org>

Reviewed by Ryosuke Niwa.

Remove trailing whitespace in HTMLInputElement.cpp
https://bugs.webkit.org/show_bug.cgi?id=53152

  • html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::updateCheckedRadioButtons): (WebCore::HTMLInputElement::applyStep): (WebCore::HTMLInputElement::updateFocusAppearance): (WebCore::HTMLInputElement::mapToEntry): (WebCore::HTMLInputElement::setAutofilled): (WebCore::HTMLInputElement::willMoveToNewOwnerDocument): (WebCore::HTMLInputElement::didMoveToNewOwnerDocument):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r76658 r76659  
     12011-01-25  Ilya Sherman  <isherman@chromium.org>
     2
     3        Reviewed by Ryosuke Niwa.
     4
     5        Remove trailing whitespace in HTMLInputElement.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=53152
     7
     8        * html/HTMLInputElement.cpp:
     9        (WebCore::HTMLInputElement::updateCheckedRadioButtons):
     10        (WebCore::HTMLInputElement::applyStep):
     11        (WebCore::HTMLInputElement::updateFocusAppearance):
     12        (WebCore::HTMLInputElement::mapToEntry):
     13        (WebCore::HTMLInputElement::setAutofilled):
     14        (WebCore::HTMLInputElement::willMoveToNewOwnerDocument):
     15        (WebCore::HTMLInputElement::didMoveToNewOwnerDocument):
     16
    1172011-01-25  Mike Reed  <reed@google.com>
    218
  • trunk/Source/WebCore/html/HTMLInputElement.cpp

    r76557 r76659  
    140140        }
    141141    }
    142    
     142
    143143    if (renderer() && renderer()->style()->hasAppearance())
    144144        renderer()->theme()->stateChanged(renderer(), CheckedState);
     
    350350        newValue = m_inputType->maximum();
    351351    setValueAsNumber(newValue, ec);
    352    
     352
    353353    if (AXObjectCache::accessibilityEnabled())
    354354         document()->axObjectCache()->postNotification(renderer(), AXObjectCache::AXValueChanged, true);
     
    380380
    381381void HTMLInputElement::updateFocusAppearance(bool restorePreviousSelection)
    382 {       
     382{
    383383    if (isTextField())
    384384        InputElement::updateFocusAppearance(m_data, this, this, restorePreviousSelection);
     
    529529{
    530530    if (((attrName == heightAttr || attrName == widthAttr) && m_inputType->shouldRespectHeightAndWidthAttributes())
    531         || attrName == vspaceAttr 
     531        || attrName == vspaceAttr
    532532        || attrName == hspaceAttr) {
    533533        result = eUniversal;
    534534        return false;
    535     } 
     535    }
    536536
    537537    if (attrName == alignAttr && m_inputType->shouldRespectAlignAttribute()) {
     
    11121112    if (autofilled == m_isAutofilled)
    11131113        return;
    1114        
     1114
    11151115    m_isAutofilled = autofilled;
    11161116    setNeedsStyleRecalc();
     
    12031203    if (needsActivationCallback())
    12041204        document()->unregisterForDocumentActivationCallbacks(this);
    1205        
     1205
    12061206    document()->checkedRadioButtons().removeButton(this);
    12071207
     
    12121212{
    12131213    registerForActivationCallbackIfNeeded();
    1214        
     1214
    12151215    HTMLFormControlElementWithState::didMoveToNewOwnerDocument();
    12161216}
    1217    
     1217
    12181218void HTMLInputElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
    12191219{
Note: See TracChangeset for help on using the changeset viewer.