WebIDLpedia

UIEventInit dictionary

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:

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