Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<html class=reftest-wait>
<title>The range is repainted if an option is removed from the range's list</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 list=tickmarks>
<datalist id=tickmarks>
<option value=-2></option>
<option value=1 id=to-remove></option>
<option value=4></option>
</datalist>
<script>
requestAnimationFrame(() =>
requestAnimationFrame(() => {
document.querySelector("option#to-remove").remove();
takeScreenshot();
}));
</script>