[Bug 11004] Add an example of suggestion labels being used and rendered for input type="range"

http://www.w3.org/Bugs/Public/show_bug.cgi?id=11004

Benjamin Hawkes-Lewis <bhawkeslewis@googlemail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |

--- Comment #6 from Benjamin Hawkes-Lewis <bhawkeslewis@googlemail.com> 2010-10-22 07:33:43 UTC ---
Not really, I mean something like:

<input type="range" min="0" max="100" value="0" step="10" name="speed"
list="speeds">
<datalist id="speeds">
  <option value="10">Slower</option>
  <option value="20">Slow</option>
  <option value="30">Medium</option>
  <option value="70">Fast</option>
  <option value="90">Faster</option>
</datalist>

Excuse the ASCII art:

------------------------------------------------------------
|       |              |             }               |        |        |       
 }           |        |              |
       Slower      Slow       Medium                                 Fast      
        Faster       

The example in the spec doesn't have labels specified in the data list, or
render them.

Assigning to me in the hopes that I'll find time to come up with a nicer
example, though.

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Friday, 22 October 2010 07:33:46 UTC