Definition
UI Events defines UIEventInit
dictionary UIEventInit : EventInit {
Window? view = null;
long detail = 0;
};
partial dictionary UIEventInit {
unsigned long which = 0;
};
This dictionary is extended in the following specifications:
- Input Device Capabilities
partial dictionary UIEventInit { InputDeviceCapabilities? sourceCapabilities = null; };
Consolidated IDL (across partials)
dictionary UIEventInit : EventInit {
Window? view = null;
long detail = 0;
unsigned long which = 0;
InputDeviceCapabilities? sourceCapabilities = null;
};
Referring IDL interfaces/dictionaries
Referring specifications
- Input Device Capabilities refers to
UIEventInit
- CSS Spatial Navigation Level 1 refers to
UIEventInit