mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
8 lines
241 B
Text
8 lines
241 B
Text
partial interface Navigator {
|
|
[SecureContext, SameObject] readonly attribute Keyboard keyboard;
|
|
};
|
|
|
|
[SecureContext, Exposed=Window] interface Keyboard {
|
|
Promise<void> lock(optional sequence<DOMString> keyCodes = []);
|
|
void unlock();
|
|
};
|