mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 674739 - Implement DOM3 KeyboardEvent types for volume controls r=masayuki, sr=smaug
This commit is contained in:
parent
079ab4de81
commit
16fe066050
@ -175,6 +175,10 @@ DEFINE_VK_INTERNAL(_CLOSE_CURLY_BRACKET),
|
||||
|
||||
DEFINE_VK_INTERNAL(_TILDE),
|
||||
|
||||
DEFINE_VK_INTERNAL(_VOLUME_MUTE),
|
||||
DEFINE_VK_INTERNAL(_VOLUME_DOWN),
|
||||
DEFINE_VK_INTERNAL(_VOLUME_UP),
|
||||
|
||||
DEFINE_VK_INTERNAL(_COMMA),
|
||||
DEFINE_VK_INTERNAL(_PERIOD),
|
||||
DEFINE_VK_INTERNAL(_SLASH),
|
||||
|
@ -166,6 +166,10 @@ interface nsIDOMKeyEvent : nsIDOMUIEvent
|
||||
|
||||
const unsigned long DOM_VK_TILDE = 0xB0;
|
||||
|
||||
const unsigned long DOM_VK_VOLUME_MUTE = 0xB5;
|
||||
const unsigned long DOM_VK_VOLUME_DOWN = 0xB6;
|
||||
const unsigned long DOM_VK_VOLUME_UP = 0xB7;
|
||||
|
||||
const unsigned long DOM_VK_COMMA = 0xBC;
|
||||
const unsigned long DOM_VK_PERIOD = 0xBE;
|
||||
const unsigned long DOM_VK_SLASH = 0xBF;
|
||||
|
Loading…
Reference in New Issue
Block a user