Bug 1005593 - Test keypress event for numbers on a number control input. r=ehsan

This commit is contained in:
Giovanni Sferro 2014-05-07 17:28:00 +02:00
Родитель 051aea6e89
Коммит e017b754d7
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -232,6 +232,12 @@ function test() {
// Reset 'required' attribute:
elem.removeAttribute("required");
}
// Test that key events are correctly dispatched
elem.max = "";
elem.value = "";
sendString("7837281");
is(elem.value, "7837281", "Test keypress event dispatch for number control");
}
</script>