servo/tests/wpt/web-platform-tests/interfaces/keyboard-map.idl

11 lines
279 B
Text

partial interface Navigator {
[SecureContext, SameObject] readonly attribute Keyboard keyboard;
};
interface KeyboardLayoutMap {
readonly maplike<DOMString, DOMString>;
};
[SecureContext, Exposed=Window] interface Keyboard {
Promise<KeyboardLayoutMap> getLayoutMap();
};