summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/keyboard/keyboard.idl
blob: 70c53c1b4b24b627385e32cf911c6f3a0421b970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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,
     RaisesException,
     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,
     RaisesException,
     HighEntropy,
     MeasureAs=KeyboardApiGetLayoutMap
    ] Promise<KeyboardLayoutMap> getLayoutMap();
};