mirror of
https://github.com/servo/servo.git
synced 2025-07-01 04:23:39 +01:00
11 lines
279 B
Text
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();
|
|
};
|