ladybird/Userland/Libraries/LibWeb/UIEvents/EventModifier.idl
Idan Horowitz f74b612aa4 LibWeb: Add the missing KeyboardEvent IDL constructor
This commit also does a bit of general cleanup on the header file.
2021-10-01 20:14:45 +02:00

11 lines
228 B
Plaintext

#import <UIEvents/UIEvent.idl>
dictionary EventModifierInit : UIEventInit {
boolean ctrlKey = false;
boolean shiftKey = false;
boolean altKey = false;
boolean metaKey = false;
// FIXME: modifier* fields
};