Title: [111026] trunk/Source/WebCore
Revision
111026
Author
[email protected]
Date
2012-03-16 10:58:13 -0700 (Fri, 16 Mar 2012)

Log Message

Make HTMLInputElement::isRadioButton non-virtual and remove unused HTMLFormControlElement::isRadioButton method
https://bugs.webkit.org/show_bug.cgi?id=81255

Reviewed by Kent Tamura.

No new tests, no change in behavior.

* html/HTMLFormControlElement.h:
* html/HTMLInputElement.h:
(HTMLInputElement):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (111025 => 111026)


--- trunk/Source/WebCore/ChangeLog	2012-03-16 17:43:56 UTC (rev 111025)
+++ trunk/Source/WebCore/ChangeLog	2012-03-16 17:58:13 UTC (rev 111026)
@@ -1,3 +1,16 @@
+2012-03-16  Adam Klein  <[email protected]>
+
+        Make HTMLInputElement::isRadioButton non-virtual and remove unused HTMLFormControlElement::isRadioButton method
+        https://bugs.webkit.org/show_bug.cgi?id=81255
+
+        Reviewed by Kent Tamura.
+
+        No new tests, no change in behavior.
+
+        * html/HTMLFormControlElement.h:
+        * html/HTMLInputElement.h:
+        (HTMLInputElement):
+
 2012-03-16  Tay Grigg  <[email protected]>
 
         [BlackBerry] Update NetworkJob to accept batched headers

Modified: trunk/Source/WebCore/html/HTMLFormControlElement.h (111025 => 111026)


--- trunk/Source/WebCore/html/HTMLFormControlElement.h	2012-03-16 17:43:56 UTC (rev 111025)
+++ trunk/Source/WebCore/html/HTMLFormControlElement.h	2012-03-16 17:58:13 UTC (rev 111026)
@@ -80,7 +80,6 @@
     virtual bool isEnabledFormControl() const { return !disabled(); }
     virtual bool isReadOnlyFormControl() const { return readOnly(); }
 
-    virtual bool isRadioButton() const { return false; }
     virtual bool canTriggerImplicitSubmission() const { return false; }
 
     // Override in derived classes to get the encoded name=value pair for submitting.

Modified: trunk/Source/WebCore/html/HTMLInputElement.h (111025 => 111026)


--- trunk/Source/WebCore/html/HTMLInputElement.h	2012-03-16 17:43:56 UTC (rev 111025)
+++ trunk/Source/WebCore/html/HTMLInputElement.h	2012-03-16 17:58:13 UTC (rev 111026)
@@ -83,7 +83,7 @@
 
     bool isTextButton() const;
 
-    virtual bool isRadioButton() const;
+    bool isRadioButton() const;
     bool isTextField() const;
     bool isSearchField() const;
     bool isInputTypeHidden() const;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to