summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/UIEvents/EventModifier.idl
blob: 907616c5e164e863f1d6f24256fc76bf2e22471c (plain)
1
2
3
4
5
6
7
8
9
10
#import <UIEvents/UIEvent.idl>

dictionary EventModifierInit : UIEventInit {
    boolean ctrlKey = false;
    boolean shiftKey = false;
    boolean altKey = false;
    boolean metaKey = false;

    // FIXME: modifier* fields
};