Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-input-element/range-list-added-repaint.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class=reftest-wait>
<title>The range is repainted if a list ID is added</title>
<link rel=author href="mailto:zach@zrhoffman.net" title="Zach Hoffman">
<link rel=match href=range-tick-marks-05-ref.html>
<script src=/common/reftest-wait.js></script>
<input type=range step=3 value=1 min=-5 max=5>
<datalist id=tickmarks>
<option value=4>
<option value=-2>
</datalist>
<script>
requestAnimationFrame(() =>
requestAnimationFrame(() => {
document.querySelector("input[type=range]").setAttribute("list", "tickmarks");
takeScreenshot();
}));
</script>