blob: 00ae7c04731de1d5b8e9a1d920cb19c70d391034 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<input type="range" id="test" value="100" min="0" max="200">
<script>
var test = document.getElementById("test");
test.offsetWidth; // Force layout.
test.min = 80;
test.max = 140;
</script>
</body>
</html>