diff options
Diffstat (limited to 'test/wpt/tests/interfaces/keyboard-map.idl')
-rw-r--r-- | test/wpt/tests/interfaces/keyboard-map.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/wpt/tests/interfaces/keyboard-map.idl b/test/wpt/tests/interfaces/keyboard-map.idl new file mode 100644 index 0000000..5103734 --- /dev/null +++ b/test/wpt/tests/interfaces/keyboard-map.idl @@ -0,0 +1,15 @@ +// GENERATED CONTENT - DO NOT EDIT +// Content was automatically extracted by Reffy into webref +// (https://github.com/w3c/webref) +// Source: Keyboard Map (https://wicg.github.io/keyboard-map/) + +[Exposed=Window] +interface KeyboardLayoutMap { + readonly maplike<DOMString, DOMString>; +}; + +partial interface Keyboard { + Promise<KeyboardLayoutMap> getLayoutMap(); + + attribute EventHandler onlayoutchange; +}; |