shouldn't the _onKeydown function implement a check for stopKeyboardEventPropagation for it to work ?
_onKeydown: function(event) {
if (!this.keyboardEventMatchesKeys(event, 'up down esc')) {
// all other keys focus the menu item starting with that character
this._focusWithKeyboardEvent(event);
}
// added stopKeyboardEventPropagation
if (this.stopKeyboardEventPropagation) {
event.stopPropagation();
}
},
shouldn't the _onKeydown function implement a check for
stopKeyboardEventPropagation
for it to work ?