зеркало из https://github.com/mozilla/gecko-dev.git
Allow spacebar to scroll in Print Preview. b=158362 r=neil sr=bzbarsky a=benjamin
This commit is contained in:
Родитель
16101a97a6
Коммит
dd31c1c22e
|
@ -147,6 +147,11 @@ GetActionForEvent(nsIDOMEvent* aEvent)
|
|||
if (keyCode == nsIDOMKeyEvent::DOM_VK_TAB)
|
||||
return b ? eEventAction_ShiftTab : eEventAction_Tab;
|
||||
|
||||
PRUint32 charCode;
|
||||
keyEvent->GetCharCode(&charCode);
|
||||
if (charCode == ' ' || keyCode == nsIDOMKeyEvent::DOM_VK_SPACE)
|
||||
return eEventAction_Propagate;
|
||||
|
||||
if (b) return eEventAction_Suppress;
|
||||
|
||||
for (PRUint32 i = 0; i < sizeof(kOKKeyCodes)/sizeof(kOKKeyCodes[0]); ++i) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче