https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c781a3b87218ad3eadc4be13be2897ebb33aa88d authored by Zhuoyu Qian on 11 April 2018, 05:16:30 UTC
Background-size should not accept negative values.
Tip revision: c781a3b
keyboard-lock.idl
partial interface Navigator {
  [SecureContext, SameObject] readonly attribute Keyboard keyboard;
};

[SecureContext, Exposed=Window] interface Keyboard {
  Promise<void> lock(optional sequence<DOMString> keyCodes = []);
  void unlock();
};
back to top