- From: Nicholas Shanks <nickshanks@nickshanks.com>
- Date: Fri, 16 Nov 2012 23:35:58 +0000
- To: www-html@w3.org
Received on Friday, 16 November 2012 23:36:29 UTC
>From http://code.google.com/p/chromium/issues/detail?id=161473 When an input has no @min, the step base should be the @value, before resorting to default step base for that type, then step base of zero. e.g. <input type=number value=5 step=10> Expected permitted values: …, –5, 5, 15, 25, 35, … Permitted values according to base step rule: …, –10, 0, 10, 20, 30, … Without this, an unmodified form (with values as sent from server) cannot be submitted. -- Nicholas.
Received on Friday, 16 November 2012 23:36:29 UTC