This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 28322 - <form ...>
Summary: <form ...>
Status: RESOLVED INVALID
Alias: None
Product: WHATWG
Classification: Unclassified
Component: HTML (show other bugs)
Version: unspecified
Hardware: Other other
: P3 normal
Target Milestone: Unsorted
Assignee: Ian 'Hixie' Hickson
QA Contact: contributor
URL: https://html.spec.whatwg.org/#range-s...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-03-24 02:27 UTC by contributor
Modified: 2015-03-30 23:18 UTC (History)
2 users (show)

See Also:


Attachments

Description contributor 2015-03-24 02:27:41 UTC
Specification: https://html.spec.whatwg.org/multipage/forms.html
Multipage: https://html.spec.whatwg.org/multipage/#range-state-(type=range)
Complete: https://html.spec.whatwg.org/#range-state-(type=range)
Referrer: 

Comment:
<form ...>
 <fieldset>
  <legend>Outbound flight time</legend>
  <select ...>
   <option>Departure
   <option>Arrival
  </select>
  <p><output name=o1>00:00</output> – <output name=o2>24:00</output></p>
  <input type=range multiple min=0 max=24 value=0,24 step=1.0 ...
	 oninput="o1.value = valueLow + ':00'; o2.value = valueHigh + ':00'">
 </fieldset>
 ...
</form>
With appropriate styli

Posted from: 91.87.128.115
User agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2341.0 Safari/537.36