We do not currently set the windows keycode for generated key events for multimedia keys. Some of them do have well-defined values though.
Created attachment 204423 [details] Patch
Comment on attachment 204423 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=204423&action=review > Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp:439 > // VK_VOLUME_MUTE (AD) Windows 2000/XP: Volume Mute key > + case Qt::Key_VolumeMute: > + return VK_VOLUME_MUTE; Part of the file moves the comment after the value and remove the name in the comment. return VK_VOLUME_MUTE; // (AD) Windows 2000/XP: Volume Mute key I think it would be easier to read (slightly). r=me for the rest.
Committed r151494: <http://trac.webkit.org/changeset/151494>