chromium/third_party/blink/web_tests/fast/forms/month/month-stepup-stepdown.html

<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description('Check stepUp() and stepDown() behavior for type=month.');

var input = document.createElement('input');

function setInputAttributes(min, max, step, value) {
    input.min = min;
    input.max = max;
    input.step = step;
    input.value = value;
}

function stepUp(value, step, max, optionalStepCount) {
    setInputAttributes(null, max, step, value);
    if (typeof optionalStepCount != "undefined")
        input.stepUp(optionalStepCount);
    else
        input.stepUp();
    return input.value;
}

function stepDown(value, step, min, optionalStepCount) {
    setInputAttributes(min, null, step, value);
    if (typeof optionalStepCount != "undefined")
        input.stepDown(optionalStepCount);
    else
        input.stepDown();
    return input.value;
}

input.type = 'month';
debug('Invalid value');
shouldBeEqualToString('stepUp("", null, null)', '1970-02');
shouldBeEqualToString('stepDown("", null, null)', '1969-12');
debug('Non-number arguments');
shouldBeEqualToString('stepUp("2010-02", null, null, "0")', '2010-02');
shouldBeEqualToString('stepDown("2010-02", null, null, "0")', '2010-02');
shouldBeEqualToString('stepUp("2010-02", null, null, "foo")', '2010-02');
shouldBeEqualToString('stepDown("2010-02", null, null, "foo")', '2010-02');
shouldBeEqualToString('stepUp("2010-02", null, null, null)', '2010-02');
shouldBeEqualToString('stepDown("2010-02", null, null, null)', '2010-02');
debug('Normal cases');
shouldBeEqualToString('stepUp("2010-02", null, null)', '2010-03');
shouldBeEqualToString('stepDown("2010-02", null, null)', '2010-01');
shouldBeEqualToString('stepUp("2010-02", null, null, 10)', '2010-12');
shouldBeEqualToString('stepDown("2010-02", null, null, 11)', '2009-03');
shouldBeEqualToString('stepUp("1970-01", "4", null, 2)', '1970-09');
shouldBeEqualToString('stepDown("1970-01", "4", null, 3)', '1969-01');
debug('Step=any');
shouldThrow('stepUp("2010-02", "any", null)');
shouldThrow('stepDown("2010-02", "any", null)');
debug('Overflow/underflow');
shouldBeEqualToString('stepUp("2010-02", "3.40282346e+38", null)', '1970-01');
shouldBeEqualToString('stepDown("2010-02", "3.40282346e+38", null)', '1970-01');
shouldBeEqualToString('stepUp("2010-02", "1", "2010-02")', '2010-02');
shouldBeEqualToString('stepDown("2010-02", "1", "2010-02")', '2010-02');

debug('');
</script>
</body>
</html>