[Webkit-unassigned] [Bug 96683] Add min and max input field values to Chromium API

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Sep 18 18:35:14 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=96683





--- Comment #9 from yosin at chromium.org  2012-09-18 18:35:44 PST ---
(From update of attachment 163982)
View in context: https://bugs.webkit.org/attachment.cgi?id=163982&action=review

> Source/WebKit/chromium/src/WebViewImpl.cpp:2153
> +        if (input->isNumberField()

How about using HTMLInputElement::isSteppable() and HTMLInputElement::createStepRange()?
If we use them, we can write

if (input->isSteppable()) {
  const StepRange stepRange = input->createStepRange();
  info.min = stepRange.minimum();
  info.max = stepRange.maximum();
}

Note: HTMLInputElement::minimum() and maximum() call createStepRange().

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list