<!DOCTYPE html>
<html>
<body>

Time: <input type="time" id="myTime" value="16:32:55">

<p>Click the button to decrement the value of the time field by 1 minute (each time you click).</p>

<p><strong>Note:</strong> This is the same as clicking the down arrow on the right side of the time field for the "minute" section.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
    document.getElementById("myTime").stepDown();
}
</script>

</body>
</html>