[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

darin at apple.com darin at apple.com
Wed Dec 22 13:35:29 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 103652bd6e6812255275ef2b7bfd0d94dc092c93
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 21 01:11:28 2010 +0000

    Fix wrong change log! It should have said this:
    
    Deprecate the inputType function on HTMLInputElement
    https://bugs.webkit.org/show_bug.cgi?id=46023
    
    Reviewed by James Robinson.
    
    WebCore:
    
    * html/HTMLInputElement.cpp:
    (WebCore::HTMLInputElement::HTMLInputElement): Use m_deprecatedTypeNumber.
    (WebCore::HTMLInputElement::isValidValue): Use deprecatedInputType.
    (WebCore::HTMLInputElement::typeMismatch): Ditto.
    (WebCore::HTMLInputElement::valueMissing): Ditto.
    (WebCore::HTMLInputElement::rangeUnderflow): Ditto.
    (WebCore::HTMLInputElement::rangeOverflow): Ditto.
    (WebCore::HTMLInputElement::minimum): Ditto.
    (WebCore::HTMLInputElement::maximum): Ditto.
    (WebCore::HTMLInputElement::stepBase): Ditto.
    (WebCore::HTMLInputElement::stepMismatch): Ditto.
    (WebCore::HTMLInputElement::getStepParameters): Ditto.
    (WebCore::HTMLInputElement::getAllowedValueStep): Ditto.
    (WebCore::HTMLInputElement::isKeyboardFocusable): Ditto.
    (WebCore::HTMLInputElement::shouldUseInputMethod): Ditto.
    (WebCore::HTMLInputElement::handleBlurEvent): Ditto.
    (WebCore::HTMLInputElement::setType): Added a comment.
    (WebCore::HTMLInputElement::updateType): Replaced the setInputType function
    with this. The type is always the type attribute value, so there is no value
    in passing the type string in, and this is an internal implementation detail,
    not a public function.
    (WebCore::createFormControlTypes): Use deprecatedNumberOfTypes.
    (WebCore::HTMLInputElement::formControlType): Use deprecatedInputType.
    (WebCore::HTMLInputElement::saveFormControlState): Ditto.
    (WebCore::HTMLInputElement::restoreFormControlState): Ditto.
    (WebCore::HTMLInputElement::accessKeyAction): Ditto.
    (WebCore::HTMLInputElement::mapToEntry): Ditto.
    (WebCore::HTMLInputElement::parseMappedAttribute): Ditto.
    (WebCore::HTMLInputElement::rendererIsNeeded): Ditto.
    (WebCore::HTMLInputElement::createRenderer): Ditto.
    (WebCore::HTMLInputElement::attach): Ditto.
    (WebCore::HTMLInputElement::isSuccessfulSubmitButton): Ditto.
    (WebCore::HTMLInputElement::appendFormData): Ditto.
    (WebCore::HTMLInputElement::isTextField): Ditto.
    (WebCore::HTMLInputElement::isTextType): Ditto.
    (WebCore::HTMLInputElement::setChecked): Ditto.
    (WebCore::HTMLInputElement::value): Ditto.
    (WebCore::HTMLInputElement::valueWithDefault): Ditto.
    (WebCore::HTMLInputElement::setSuggestedValue): Ditto.
    (WebCore::HTMLInputElement::setValue): Ditto.
    (WebCore::HTMLInputElement::parseToDouble): Ditto.
    (WebCore::HTMLInputElement::valueAsDate): Ditto.
    (WebCore::HTMLInputElement::setValueAsDate): Ditto.
    (WebCore::HTMLInputElement::valueAsNumber): Ditto.
    (WebCore::HTMLInputElement::setValueAsNumber): Ditto.
    (WebCore::HTMLInputElement::serializeForDateTimeTypes): Ditto.
    (WebCore::HTMLInputElement::serialize): Ditto.
    (WebCore::HTMLInputElement::setValueFromRenderer): Ditto.
    (WebCore::HTMLInputElement::storesValueSeparateFromAttribute): Ditto.
    (WebCore::HTMLInputElement::preDispatchEventHandler): Ditto.
    (WebCore::HTMLInputElement::postDispatchEventHandler): Ditto.
    (WebCore::HTMLInputElement::defaultEventHandler): Ditto.
    (WebCore::HTMLInputElement::handleBeforeTextInsertedEvent): Ditto.
    (WebCore::HTMLInputElement::files): Ditto.
    (WebCore::HTMLInputElement::isAcceptableValue): Ditto.
    (WebCore::HTMLInputElement::sanitizeValue): Ditto.
    (WebCore::HTMLInputElement::hasUnacceptableValue): Ditto.
    (WebCore::HTMLInputElement::needsActivationCallback): Ditto.
    (WebCore::HTMLInputElement::isRequiredFormControl): Ditto.
    (WebCore::HTMLInputElement::recalcWillValidate): Ditto.
    (WebCore::HTMLInputElement::parseToDateComponents): Ditto.
    (WebCore::HTMLInputElement::dataList): Ditto.
    (WebCore::HTMLInputElement::isSpeechEnabled): Ditto.
    
    * html/HTMLInputElement.h: Renamed InputType to DeprecatedInputType since it
    should not be used outside this class. Renamed numberOfTypes to
    dprecatedNumberOfTypes for the same reason. Changed all code to use
    deprecatedInputType function instead of m_type. Renamed inputType function
    to deprecatedInputType. Replaced public setInputType function with private
    updateType function. Renamed m_type data member to m_deprecatedTypeNumber.
    
    * rendering/MediaControlElements.cpp:
    (WebCore::MediaControlInputElement::MediaControlInputElement):
    * rendering/RenderFileUploadControl.cpp:
    (WebCore::RenderFileUploadControl::updateFromElement):
    Use setType instead of setInputType.
    
    WebKit/chromium:
    
    * src/WebInputElement.cpp:
    (WebKit::WebInputElement::inputType):
    * src/WebPasswordFormUtils.cpp:
    (WebKit::findPasswordFormFields):
    * src/WebSearchableFormData.cpp:
    (WebCore::HasSuitableTextElement):
    Use deprecatedInputType instead of inputType.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67904 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 0bc347b..6f0f278 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,87 @@
+2010-09-20  Darin Adler  <darin at apple.com>
+
+        Reviewed by James Robinson.
+
+        Deprecate the inputType function on HTMLInputElement
+        https://bugs.webkit.org/show_bug.cgi?id=46023
+
+        * html/HTMLInputElement.cpp:
+        (WebCore::HTMLInputElement::HTMLInputElement): Use m_deprecatedTypeNumber.
+        (WebCore::HTMLInputElement::isValidValue): Use deprecatedInputType.
+        (WebCore::HTMLInputElement::typeMismatch): Ditto.
+        (WebCore::HTMLInputElement::valueMissing): Ditto.
+        (WebCore::HTMLInputElement::rangeUnderflow): Ditto.
+        (WebCore::HTMLInputElement::rangeOverflow): Ditto.
+        (WebCore::HTMLInputElement::minimum): Ditto.
+        (WebCore::HTMLInputElement::maximum): Ditto.
+        (WebCore::HTMLInputElement::stepBase): Ditto.
+        (WebCore::HTMLInputElement::stepMismatch): Ditto.
+        (WebCore::HTMLInputElement::getStepParameters): Ditto.
+        (WebCore::HTMLInputElement::getAllowedValueStep): Ditto.
+        (WebCore::HTMLInputElement::isKeyboardFocusable): Ditto.
+        (WebCore::HTMLInputElement::shouldUseInputMethod): Ditto.
+        (WebCore::HTMLInputElement::handleBlurEvent): Ditto.
+        (WebCore::HTMLInputElement::setType): Added a comment.
+        (WebCore::HTMLInputElement::updateType): Replaced the setInputType function
+        with this. The type is always the type attribute value, so there is no value
+        in passing the type string in, and this is an internal implementation detail,
+        not a public function.
+        (WebCore::createFormControlTypes): Use deprecatedNumberOfTypes.
+        (WebCore::HTMLInputElement::formControlType): Use deprecatedInputType.
+        (WebCore::HTMLInputElement::saveFormControlState): Ditto.
+        (WebCore::HTMLInputElement::restoreFormControlState): Ditto.
+        (WebCore::HTMLInputElement::accessKeyAction): Ditto.
+        (WebCore::HTMLInputElement::mapToEntry): Ditto.
+        (WebCore::HTMLInputElement::parseMappedAttribute): Ditto.
+        (WebCore::HTMLInputElement::rendererIsNeeded): Ditto.
+        (WebCore::HTMLInputElement::createRenderer): Ditto.
+        (WebCore::HTMLInputElement::attach): Ditto.
+        (WebCore::HTMLInputElement::isSuccessfulSubmitButton): Ditto.
+        (WebCore::HTMLInputElement::appendFormData): Ditto.
+        (WebCore::HTMLInputElement::isTextField): Ditto.
+        (WebCore::HTMLInputElement::isTextType): Ditto.
+        (WebCore::HTMLInputElement::setChecked): Ditto.
+        (WebCore::HTMLInputElement::value): Ditto.
+        (WebCore::HTMLInputElement::valueWithDefault): Ditto.
+        (WebCore::HTMLInputElement::setSuggestedValue): Ditto.
+        (WebCore::HTMLInputElement::setValue): Ditto.
+        (WebCore::HTMLInputElement::parseToDouble): Ditto.
+        (WebCore::HTMLInputElement::valueAsDate): Ditto.
+        (WebCore::HTMLInputElement::setValueAsDate): Ditto.
+        (WebCore::HTMLInputElement::valueAsNumber): Ditto.
+        (WebCore::HTMLInputElement::setValueAsNumber): Ditto.
+        (WebCore::HTMLInputElement::serializeForDateTimeTypes): Ditto.
+        (WebCore::HTMLInputElement::serialize): Ditto.
+        (WebCore::HTMLInputElement::setValueFromRenderer): Ditto.
+        (WebCore::HTMLInputElement::storesValueSeparateFromAttribute): Ditto.
+        (WebCore::HTMLInputElement::preDispatchEventHandler): Ditto.
+        (WebCore::HTMLInputElement::postDispatchEventHandler): Ditto.
+        (WebCore::HTMLInputElement::defaultEventHandler): Ditto.
+        (WebCore::HTMLInputElement::handleBeforeTextInsertedEvent): Ditto.
+        (WebCore::HTMLInputElement::files): Ditto.
+        (WebCore::HTMLInputElement::isAcceptableValue): Ditto.
+        (WebCore::HTMLInputElement::sanitizeValue): Ditto.
+        (WebCore::HTMLInputElement::hasUnacceptableValue): Ditto.
+        (WebCore::HTMLInputElement::needsActivationCallback): Ditto.
+        (WebCore::HTMLInputElement::isRequiredFormControl): Ditto.
+        (WebCore::HTMLInputElement::recalcWillValidate): Ditto.
+        (WebCore::HTMLInputElement::parseToDateComponents): Ditto.
+        (WebCore::HTMLInputElement::dataList): Ditto.
+        (WebCore::HTMLInputElement::isSpeechEnabled): Ditto.
+
+        * html/HTMLInputElement.h: Renamed InputType to DeprecatedInputType since it
+        should not be used outside this class. Renamed numberOfTypes to
+        dprecatedNumberOfTypes for the same reason. Changed all code to use
+        deprecatedInputType function instead of m_type. Renamed inputType function
+        to deprecatedInputType. Replaced public setInputType function with private
+        updateType function. Renamed m_type data member to m_deprecatedTypeNumber.
+
+        * rendering/MediaControlElements.cpp:
+        (WebCore::MediaControlInputElement::MediaControlInputElement):
+        * rendering/RenderFileUploadControl.cpp:
+        (WebCore::RenderFileUploadControl::updateFromElement):
+        Use setType instead of setInputType.
+
 2010-09-20  Mihai Parparita  <mihaip at chromium.org>
 
         Unreviewed; an attempt to fix Windows build.
@@ -1256,90 +1340,6 @@
 
 2010-09-17  Darin Adler  <darin at apple.com>
 
-        Reviewed by James Robinson.
-
-        Deprecate the inputType function on HTMLInputElement
-        https://bugs.webkit.org/show_bug.cgi?id=46023
-
-        * html/HTMLInputElement.cpp:
-        (WebCore::HTMLInputElement::HTMLInputElement): Use m_deprecatedTypeNumber.
-        (WebCore::HTMLInputElement::isValidValue): Use deprecatedInputType.
-        (WebCore::HTMLInputElement::typeMismatch): Ditto.
-        (WebCore::HTMLInputElement::valueMissing): Ditto.
-        (WebCore::HTMLInputElement::rangeUnderflow): Ditto.
-        (WebCore::HTMLInputElement::rangeOverflow): Ditto.
-        (WebCore::HTMLInputElement::minimum): Ditto.
-        (WebCore::HTMLInputElement::maximum): Ditto.
-        (WebCore::HTMLInputElement::stepBase): Ditto.
-        (WebCore::HTMLInputElement::stepMismatch): Ditto.
-        (WebCore::HTMLInputElement::getStepParameters): Ditto.
-        (WebCore::HTMLInputElement::getAllowedValueStep): Ditto.
-        (WebCore::HTMLInputElement::isKeyboardFocusable): Ditto.
-        (WebCore::HTMLInputElement::shouldUseInputMethod): Ditto.
-        (WebCore::HTMLInputElement::handleBlurEvent): Ditto.
-        (WebCore::HTMLInputElement::setType): Added a comment.
-        (WebCore::HTMLInputElement::updateType): Replaced the setInputType function
-        with this. The type is always the type attribute value, so there is no value
-        in passing the type string in, and this is an internal implementation detail,
-        not a public function.
-        (WebCore::createFormControlTypes): Use deprecatedNumberOfTypes.
-        (WebCore::HTMLInputElement::formControlType): Use deprecatedInputType.
-        (WebCore::HTMLInputElement::saveFormControlState): Ditto.
-        (WebCore::HTMLInputElement::restoreFormControlState): Ditto.
-        (WebCore::HTMLInputElement::accessKeyAction): Ditto.
-        (WebCore::HTMLInputElement::mapToEntry): Ditto.
-        (WebCore::HTMLInputElement::parseMappedAttribute): Ditto.
-        (WebCore::HTMLInputElement::rendererIsNeeded): Ditto.
-        (WebCore::HTMLInputElement::createRenderer): Ditto.
-        (WebCore::HTMLInputElement::attach): Ditto.
-        (WebCore::HTMLInputElement::isSuccessfulSubmitButton): Ditto.
-        (WebCore::HTMLInputElement::appendFormData): Ditto.
-        (WebCore::HTMLInputElement::isTextField): Ditto.
-        (WebCore::HTMLInputElement::isTextType): Ditto.
-        (WebCore::HTMLInputElement::setChecked): Ditto.
-        (WebCore::HTMLInputElement::value): Ditto.
-        (WebCore::HTMLInputElement::valueWithDefault): Ditto.
-        (WebCore::HTMLInputElement::setSuggestedValue): Ditto.
-        (WebCore::HTMLInputElement::setValue): Ditto.
-        (WebCore::HTMLInputElement::parseToDouble): Ditto.
-        (WebCore::HTMLInputElement::valueAsDate): Ditto.
-        (WebCore::HTMLInputElement::setValueAsDate): Ditto.
-        (WebCore::HTMLInputElement::valueAsNumber): Ditto.
-        (WebCore::HTMLInputElement::setValueAsNumber): Ditto.
-        (WebCore::HTMLInputElement::serializeForDateTimeTypes): Ditto.
-        (WebCore::HTMLInputElement::serialize): Ditto.
-        (WebCore::HTMLInputElement::setValueFromRenderer): Ditto.
-        (WebCore::HTMLInputElement::storesValueSeparateFromAttribute): Ditto.
-        (WebCore::HTMLInputElement::preDispatchEventHandler): Ditto.
-        (WebCore::HTMLInputElement::postDispatchEventHandler): Ditto.
-        (WebCore::HTMLInputElement::defaultEventHandler): Ditto.
-        (WebCore::HTMLInputElement::handleBeforeTextInsertedEvent): Ditto.
-        (WebCore::HTMLInputElement::files): Ditto.
-        (WebCore::HTMLInputElement::isAcceptableValue): Ditto.
-        (WebCore::HTMLInputElement::sanitizeValue): Ditto.
-        (WebCore::HTMLInputElement::hasUnacceptableValue): Ditto.
-        (WebCore::HTMLInputElement::needsActivationCallback): Ditto.
-        (WebCore::HTMLInputElement::isRequiredFormControl): Ditto.
-        (WebCore::HTMLInputElement::recalcWillValidate): Ditto.
-        (WebCore::HTMLInputElement::parseToDateComponents): Ditto.
-        (WebCore::HTMLInputElement::dataList): Ditto.
-        (WebCore::HTMLInputElement::isSpeechEnabled): Ditto.
-
-        * html/HTMLInputElement.h: Renamed InputType to DeprecatedInputType since it
-        should not be used outside this class. Renamed numberOfTypes to
-        dprecatedNumberOfTypes for the same reason. Changed all code to use
-        deprecatedInputType function instead of m_type. Renamed inputType function
-        to deprecatedInputType. Replaced public setInputType function with private
-        updateType function. Renamed m_type data member to m_deprecatedTypeNumber.
-
-        * rendering/MediaControlElements.cpp:
-        (WebCore::MediaControlInputElement::MediaControlInputElement):
-        * rendering/RenderFileUploadControl.cpp:
-        (WebCore::RenderFileUploadControl::updateFromElement):
-        Use setType instead of setInputType.
-
-2010-09-17  Darin Adler  <darin at apple.com>
-
         Build fix for platforms that compile Touch.
 
         * dom/Touch.cpp:
diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 3f81503..dd23f6f 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,18 @@
+2010-09-20  Darin Adler  <darin at apple.com>
+
+        Reviewed by James Robinson.
+
+        Deprecate the inputType function on HTMLInputElement
+        https://bugs.webkit.org/show_bug.cgi?id=46023
+
+        * src/WebInputElement.cpp:
+        (WebKit::WebInputElement::inputType):
+        * src/WebPasswordFormUtils.cpp:
+        (WebKit::findPasswordFormFields):
+        * src/WebSearchableFormData.cpp:
+        (WebCore::HasSuitableTextElement):
+        Use deprecatedInputType instead of inputType.
+
 2010-09-20  Kenneth Russell  <kbr at google.com>
 
         Reviewed by James Robinson.
@@ -91,21 +106,6 @@
 
 2010-09-17  Darin Adler  <darin at apple.com>
 
-        Reviewed by James Robinson.
-
-        Deprecate the inputType function on HTMLInputElement
-        https://bugs.webkit.org/show_bug.cgi?id=46023
-
-        * src/WebInputElement.cpp:
-        (WebKit::WebInputElement::inputType):
-        * src/WebPasswordFormUtils.cpp:
-        (WebKit::findPasswordFormFields):
-        * src/WebSearchableFormData.cpp:
-        (WebCore::HasSuitableTextElement):
-        Use deprecatedInputType instead of inputType.
-
-2010-09-17  Darin Adler  <darin at apple.com>
-
         Reviewed by Sam Weinig.
 
         REGRESSION (r60104): Zoom level is unexpectedly reset on page reload

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list