web api instance method
CompositionEvent: initCompositionEvent() method
The initCompositionEvent()
method of the CompositionEvent interface initializes the attributes of a
CompositionEvent object instance.
[!NOTE] The correct way of creating a
CompositionEventis to use the constructorCompositionEvent().
Syntax
initCompositionEvent(type, canBubble, cancelable, view, data, locale)
Parameters
type- : A string representing the type of composition event; this will be
one of
compositionstart,compositionupdate, orcompositionend.
- : A string representing the type of composition event; this will be
one of
canBubble- : A boolean value specifying whether or not the event can bubble.
cancelable- : A boolean value indicating whether or not the event can be canceled.
view- : The
Windowobject from which the event was generated.
- : The
data- : A string representing the value of the
dataattribute.
- : A string representing the value of the
locale- : A string representing the value of the
localeattribute.
- : A string representing the value of the
Return value
None (undefined).
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.