|
@@ -52,12 +52,24 @@ HTMLElement includes GlobalEventHandlers;
|
|
|
HTMLElement includes ElementContentEditable;
|
|
|
HTMLElement includes HTMLOrSVGElement;
|
|
|
|
|
|
+// https://html.spec.whatwg.org/#attr-inputmode
|
|
|
+enum InputMode {
|
|
|
+ "none",
|
|
|
+ "text",
|
|
|
+ "tel",
|
|
|
+ "url",
|
|
|
+ "email",
|
|
|
+ "numeric",
|
|
|
+ "decimal",
|
|
|
+ "search"
|
|
|
+};
|
|
|
+
|
|
|
// https://html.spec.whatwg.org/#elementcontenteditable
|
|
|
interface mixin ElementContentEditable {
|
|
|
[CEReactions] attribute DOMString contentEditable;
|
|
|
[FIXME, CEReactions] attribute DOMString enterKeyHint;
|
|
|
readonly attribute boolean isContentEditable;
|
|
|
- [FIXME, CEReactions] attribute DOMString inputMode;
|
|
|
+ [Reflect=inputmode, Enumerated=InputMode, CEReactions] attribute DOMString inputMode;
|
|
|
};
|
|
|
|
|
|
HTMLElement includes ElementCSSInlineStyle;
|