blob: c50f67fce53cac40390ff24f4a15d22b3daf4a55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!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>
|