summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/range-tick-marks-02.html
blob: 453e650b2f633b00903eec74e2ee6ca85f1e42e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>RTL range input with datalist</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/input.html#range-state-(type=range)">
<link rel="help" href="https://html.spec.whatwg.org/multipage/dom.html#attr-dir-rtl">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=841942">
<link rel="author" href="mailto:zach@zrhoffman.net" title="Zach Hoffman">
<link rel="match" href="range-tick-marks-02-ref.html">
<input type="range" min="-100" max="100" value="0" step="10" name="power" list="powers" dir="rtl">
<datalist id="powers">
  <option value="0">
  <option value="-30">
  <option value="30">
  <option value="50">
</datalist>