RESOLVED FIXED59246
Let the RenderTheme decide if an input type should have a spinner
https://bugs.webkit.org/show_bug.cgi?id=59246
Summary Let the RenderTheme decide if an input type should have a spinner
Joseph Pecoraro
Reported 2011-04-22 15:14:18 PDT
Having a spinner, a UI decision, is nicely made optional in RenderTextControlSingleLine. Instead of defaulting certain input types to use a spinner, let the RenderTheme make the decision.
Attachments
[PATCH] Let RenderTheme make the decisions (8.96 KB, patch)
2011-04-22 15:21 PDT, Joseph Pecoraro
no flags
[PATCH] Let RenderTheme make the decisions (9.62 KB, patch)
2011-04-22 15:24 PDT, Joseph Pecoraro
tkent: review+
Joseph Pecoraro
Comment 1 2011-04-22 15:21:45 PDT
Created attachment 90776 [details] [PATCH] Let RenderTheme make the decisions Currently only TextFields check if a SpinButton should be added. However the RenderTheme decision could be used in other places in the future.
Joseph Pecoraro
Comment 2 2011-04-22 15:24:19 PDT
Created attachment 90777 [details] [PATCH] Let RenderTheme make the decisions Updated ChangeLog. (git add issue!)
Kent Tamura
Comment 3 2011-04-22 15:31:10 PDT
Comment on attachment 90777 [details] [PATCH] Let RenderTheme make the decisions View in context: https://bugs.webkit.org/attachment.cgi?id=90777&action=review > Source/WebCore/rendering/RenderTheme.h:206 > + // Return true if the input element should have a spin button. > + virtual bool shouldHaveSpinButtonForInputElement(InputElement*) const; nit: The comment might be unnecessary. nit: "ForInputElement" in the function name is redundant. We may remove it.
Joseph Pecoraro
Comment 4 2011-04-22 15:34:02 PDT
> > Source/WebCore/rendering/RenderTheme.h:206 > > + // Return true if the input element should have a spin button. > > + virtual bool shouldHaveSpinButtonForInputElement(InputElement*) const; > > nit: The comment might be unnecessary. > nit: "ForInputElement" in the function name is redundant. We may remove it. Sounds good. Thanks!
Joseph Pecoraro
Comment 5 2011-04-22 15:45:33 PDT
Note You need to log in before you can comment on or make changes to this bug.