[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

commit-queue at webkit.org commit-queue at webkit.org
Sun Feb 20 23:51:57 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 07f620fae3e39345cafdd860308ba4cb84a76b25
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 26 03:19:57 2011 +0000

    2011-01-25  Ilya Sherman  <isherman at 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):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76659 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index ea06e28..8abefe3 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,19 @@
+2011-01-25  Ilya Sherman  <isherman at 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):
+
 2011-01-25  Mike Reed  <reed at google.com>
 
         Reviewed by James Robinson.
diff --git a/Source/WebCore/html/HTMLInputElement.cpp b/Source/WebCore/html/HTMLInputElement.cpp
index ac64e96..bf41acc 100644
--- a/Source/WebCore/html/HTMLInputElement.cpp
+++ b/Source/WebCore/html/HTMLInputElement.cpp
@@ -139,7 +139,7 @@ void HTMLInputElement::updateCheckedRadioButtons()
             control->setNeedsValidityCheck();
         }
     }
-   
+
     if (renderer() && renderer()->style()->hasAppearance())
         renderer()->theme()->stateChanged(renderer(), CheckedState);
 }
@@ -349,7 +349,7 @@ void HTMLInputElement::applyStep(double count, ExceptionCode& ec)
     if (newValue > m_inputType->maximum())
         newValue = m_inputType->maximum();
     setValueAsNumber(newValue, ec);
-    
+
     if (AXObjectCache::accessibilityEnabled())
          document()->axObjectCache()->postNotification(renderer(), AXObjectCache::AXValueChanged, true);
 }
@@ -379,7 +379,7 @@ bool HTMLInputElement::isMouseFocusable() const
 }
 
 void HTMLInputElement::updateFocusAppearance(bool restorePreviousSelection)
-{        
+{
     if (isTextField())
         InputElement::updateFocusAppearance(m_data, this, this, restorePreviousSelection);
     else
@@ -528,11 +528,11 @@ void HTMLInputElement::accessKeyAction(bool sendToAnyElement)
 bool HTMLInputElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
 {
     if (((attrName == heightAttr || attrName == widthAttr) && m_inputType->shouldRespectHeightAndWidthAttributes())
-        || attrName == vspaceAttr 
+        || attrName == vspaceAttr
         || attrName == hspaceAttr) {
         result = eUniversal;
         return false;
-    } 
+    }
 
     if (attrName == alignAttr && m_inputType->shouldRespectAlignAttribute()) {
         // Share with <img> since the alignment behavior is the same.
@@ -1111,7 +1111,7 @@ void HTMLInputElement::setAutofilled(bool autofilled)
 {
     if (autofilled == m_isAutofilled)
         return;
-        
+
     m_isAutofilled = autofilled;
     setNeedsStyleRecalc();
 }
@@ -1202,7 +1202,7 @@ void HTMLInputElement::willMoveToNewOwnerDocument()
     // Always unregister for cache callbacks when leaving a document, even if we would otherwise like to be registered
     if (needsActivationCallback())
         document()->unregisterForDocumentActivationCallbacks(this);
-        
+
     document()->checkedRadioButtons().removeButton(this);
 
     HTMLFormControlElementWithState::willMoveToNewOwnerDocument();
@@ -1211,10 +1211,10 @@ void HTMLInputElement::willMoveToNewOwnerDocument()
 void HTMLInputElement::didMoveToNewOwnerDocument()
 {
     registerForActivationCallbackIfNeeded();
-        
+
     HTMLFormControlElementWithState::didMoveToNewOwnerDocument();
 }
-    
+
 void HTMLInputElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
 {
     HTMLFormControlElementWithState::addSubresourceAttributeURLs(urls);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list