virtual-keyboard.idl (687B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: VirtualKeyboard API (https://w3c.github.io/virtual-keyboard/) 5 6 partial interface Navigator { 7 [SecureContext, SameObject] readonly attribute VirtualKeyboard virtualKeyboard; 8 }; 9 10 [Exposed=Window, SecureContext] 11 interface VirtualKeyboard : EventTarget { 12 undefined show(); 13 undefined hide(); 14 readonly attribute DOMRect boundingRect; 15 attribute boolean overlaysContent; 16 attribute EventHandler ongeometrychange; 17 }; 18 19 partial interface mixin ElementContentEditable { 20 [CEReactions] attribute DOMString virtualKeyboardPolicy; 21 };