summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/range-tick-marks-03-notref.html
blob: 5c15233a316e076007647cfae3c4fb3e352ccd62 (plain)
1
2
3
4
5
6
7
8
9
<!doctype html>
<title>max and min attributes applied to range input with datalist reference</title>
<input type="range" min="-100" max="100" value="0" step="10" name="power" list="powers">
<datalist id="powers">
  <option value="0">
  <option value="-30">
  <option value="30">
  <option value="50">
</datalist>