https://github.com/web-platform-tests/wpt
Raw File
Tip revision: bbafe29f8fadc182931b0c87daac2a215d49bd64 authored by Dong-hee Na on 10 October 2018, 07:29:59 UTC
HTML parser: Fix parser to close the p tag
Tip revision: bbafe29
idlharness.https.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

// https://wicg.github.io/keyboard-map/

'use strict';

idl_test(
  ['keyboard-map'],
  ['html'],
  async idl_array => {
    idl_array.add_objects({
      Navigator: ['navigator'],
      Keyboard: ['navigator.keyboard'],
      KeyboardLayoutMap: ['layout_map'],
    });

    self.layout_map = await navigator.keyboard.getLayoutMap();
  }
);
back to top