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/input-stepdown-weekmonth.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<html>
<title>Forms</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<h3>input_stepDown</h3>
<input type="month" id="month_input" min="2011-02" step="1" value="2010-02">
<input type="week" id="week_input" min="2011-W02" step="1" value="2010-W02">
<script>
function testStepDownOverflow(id, value, type) {
test(function() {
var input = document.getElementById(id);
input.stepDown();
assert_equals(input.value, value, "value shouldn't change.");
}, "Calling stepDown() on input - " + type + " - where value < min should not modify value.");
}
testStepDownOverflow("month_input", "2010-02", "month");
testStepDownOverflow("week_input", "2010-W02", "week");
</script>
</html>