209 shouldBe('stepUp("1", "2", "")', '"4"');
210 shouldBe('input.stepDown(); input.value', '"2"');
211 shouldBe('input.min = "0"; stepUp("9", "10", "", 9)', '"100"');
212 shouldBe('stepDown("19", "10", "0")', '"10"');
213 // value + step is <= max, but rounded result would be > max.
214 shouldThrow('stepUp("89", "10", "99")', invalidStateErr);
209shouldBe('stepUp("1", "2", "")', '"3"');
210shouldBe('input.stepDown(); input.value', '"1"');
211shouldBe('input.min = "0"; stepUp("9", "10", "", 9)', '"99"');
212shouldBe('stepDown("19", "10", "0")', '"9"');
213shouldBe('stepUp("89", "10", "99")', '"99"');