blob: 96ca47ccbc5d35da24de3ef66b0621066ad8c483 [file] [log] [blame]
<!DOCTYPE html>
<body>
<input id='test' type='range' min="1" max='9999999' />
</body>
<script>
function test() {
var x = document.getElementById("test").min = "5000000";
}
</script>