Closed
Bug 1222762
Opened 10 years ago
Closed 10 years ago
datalist element with input type=range doesn't work
Categories
(Core :: Layout: Form Controls, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 841942
People
(Reporter: xmomdo, Unassigned)
References
()
Details
User Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0
Build ID: 20151029151421
Steps to reproduce:
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>input type test</title>
</head>
<body>
<form>
<input type="range" min="0" max="100" step="0.2" value="0" list="scale" />
<datalist id="scale">
<option>0</option>
<option>50</option>
<option>100</option>
</datalist>
</form>
</body>
</html>
Actual results:
Rendering no tick marks.
Expected results:
Show tick marks like HTML spec example.
Reporter | ||
Updated•10 years ago
|
Updated•10 years ago
|
Component: Untriaged → DOM: Core & HTML
Product: Firefox → Core
![]() |
||
Updated•10 years ago
|
Component: DOM: Core & HTML → Layout: Form Controls
Flags: needinfo?(jwatt)
Summary: Dosen't work datalist element with input type=range → datalist element with input type=range doesn't work
![]() |
||
Updated•10 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 10 years ago
Flags: needinfo?(jwatt)
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•