The DOM CompositionEvent
represents events that occur due to the user indirectly entering text.
void initCompositionEvent(in DOMString typeArg,in boolean canBubbleArg, in boolean cancelableArg, in views::AbstractView viewArg, in DOMString dataArg, in DOMString localeArg); |
Attribute | Type | Description |
---|---|---|
data | DOMString | For For For Read only. |
locale | DOMString | The locale of current input method (for example, the keyboard layout locale if the composition is associated with IME). Read only. |
Initializes the attributes of a composition event.
void initCompositionEvent( in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in views::AbstractView viewArg, in DOMString dataArg, in DOMString localeArg );
typeArg
compositionstart
, compositionupdate
, or compositionend
.canBubbleArg
cancelableArg
viewArg
window
object from which the event was generated.dataArg
data
attribute.localeArg
locale
attribute.Specification | Status | Comment |
---|---|---|
Document Object Model (DOM) Level 3 Events Specification The definition of 'CompositionEvent' in that specification. | Working Draft |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 9.0 (9.0) | (Yes) | No support | ? |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 9.0 (9.0) | ? | ? | ? |
The compositionstart
and compositionend
events were fired in versions of Gecko before 9.0, but didn't have the DOM Level 3 attributes and methods. In addition, support for the compositionupdate
event was added in Gecko 9.0 (Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6).
locale
attribute for trusted events yet. However, web developers can set this value via initCompositionEvent()
when creating untrusted events.Gecko's editors (for example, <input type="text">
, <div contenteditable/>
, and designMode
) start composition after the bubble phase of compositionstart
. So, by the time your compositionstart
handler is called, no contents have not been modified.
Gecko's editors don't handle the compositionupdate
event yet. By the time your compositionupdate
handler is called, no contents have been modified.
By the time your compositionend
event handler is called, composition is complete, and no further changes will occur. For that reason, if you call event.stopPropagation()
on the compositionstart
or compositionend
event, you can break composition behavior and cause editors to fail to manage editing properly. See bug 697842 for progress on this problem getting fixed.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent