Definition
HTML Standard defines ElementContentEditable
interface mixin ElementContentEditable {
[CEReactions] attribute DOMString contentEditable;
[CEReactions] attribute DOMString enterKeyHint;
readonly attribute boolean isContentEditable;
[CEReactions] attribute DOMString inputMode;
};
This interface mixin is extended in the following specifications:
- VirtualKeyboard API
partial interface mixin ElementContentEditable { [CEReactions] attribute DOMString virtualKeyboardPolicy; };
Consolidated IDL (across partials)
interface mixin ElementContentEditable {
[CEReactions] attribute DOMString contentEditable;
[CEReactions] attribute DOMString enterKeyHint;
readonly attribute boolean isContentEditable;
[CEReactions] attribute DOMString inputMode;
[CEReactions] attribute DOMString virtualKeyboardPolicy;
};
Referring IDL interfaces/dictionaries
Referring specifications
- VirtualKeyboard API refers to
ElementContentEditable