summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/keyboard-lock/navigator-keyboard-lock-blocked-from-iframe.https.html
blob: a01f6a2fc75e7c69ad9a380f58e4f9259d9be64b (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
26
27
28
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
'use strict';

promise_test(() => {
  let iframe = document.createElement('iframe');
  iframe.src = 'resources/iframe-lock-helper.html';
  iframe.onload = () => {
    iframe.contentWindow.postMessage('Ready', '*');
  }

  document.body.appendChild(iframe);

  return new Promise((resolve,reject) => {
    window.onmessage = message => {
      if (message.data == 'Success') {
        resolve();
      } else if (message.data == 'Failure') {
        reject();
      }
    }
  });
}, '[Keyboard Lock] navigator.keyboard.lock blocked from within iframe');

</script>