[Bug 13154] WF3: Allow two handles on input type="range", like this: http://jqueryui.com/demos/slider/#range

https://www.w3.org/Bugs/Public/show_bug.cgi?id=13154

--- Comment #16 from Ian 'Hixie' Hickson <ian@hixie.ch> ---
There's no technical reason we can't do:

   <input type=range multiple min=0 max=10 value="2,5">

...or some such, if we're ok with it. We'd probably have to add two new IDL
attributes to replace valueAsNumber for this specific case, and the submitted
value would have to be parsed (split on comma) on the server, but those aren't
insurmountable problems.

We already use <option> for tick marks on <input type=range> using the list=""
attribute, so we'd get that for "free" here too.

Maybe this isn't as bad as I initially thought. It's a bit weird, but it's
actually the same as <input type=email multiple>, really.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 4 October 2013 19:35:59 UTC