https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d1463947fea0898b42b2cb1bfd8ee40b1619bc71 authored by Simon Pieters on 27 August 2018, 13:57:36 UTC
Rename dir
Tip revision: d146394
navigator-keyboard-map-two-sequential-requests.https.html
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
'use strict';

promise_test(() => {
  return navigator.keyboard.getLayoutMap()
      .then(() => {
        return navigator.keyboard.getLayoutMap();
      });
}, '[Keyboard Map] getLayoutMap() called twice sequentially');

</script>
back to top