blob: 86832c9d1d4758887bd33cf1982acda3ec7d80d4 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
Exposed=Window,
SecureContext
] interface Keyboard {
// Keyboard Lock specification: https://w3c.github.io/keyboard-lock/
[CallWith=ScriptState,
MeasureAs=KeyboardApiLock
] Promise<void> lock(optional sequence<DOMString> keyCodes = []);
[CallWith=ScriptState,
MeasureAs=KeyboardApiUnlock
] void unlock();
// Keyboard Map specification: https://wicg.github.io/keyboard-map/
[CallWith=ScriptState,
MeasureAs=KeyboardApiGetLayoutMap
] Promise<KeyboardLayoutMap> getLayoutMap();
};