Files
CRM/libraries/bootstrap/js/eternicode-bootstrap-datepicker/tests/suites/keyboard_navigation/all.js
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

27 lines
703 B
JavaScript

module('Keyboard Navigation (All)', {
setup: function(){
this.input = $('<input type="text">')
.appendTo('#qunit-fixture')
.datepicker({format: "dd-mm-yyyy"})
.focus(); // Activate for visibility checks
this.dp = this.input.data('datepicker')
this.picker = this.dp.picker;
},
teardown: function(){
this.picker.remove();
}
});
test('TAB hides picker', function(){
var target;
ok(this.picker.is(':visible'), 'Picker is visible');
this.input.trigger({
type: 'keydown',
keyCode: 9
});
ok(this.picker.is(':not(:visible)'), 'Picker is hidden');
});