diff options
Diffstat (limited to 'testing/web-platform/tests/keyboard-map/navigator-keyboard-map-allowed-from-iframe.https.html')
-rw-r--r-- | testing/web-platform/tests/keyboard-map/navigator-keyboard-map-allowed-from-iframe.https.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/keyboard-map/navigator-keyboard-map-allowed-from-iframe.https.html b/testing/web-platform/tests/keyboard-map/navigator-keyboard-map-allowed-from-iframe.https.html new file mode 100644 index 0000000000..6e0cd7de4b --- /dev/null +++ b/testing/web-platform/tests/keyboard-map/navigator-keyboard-map-allowed-from-iframe.https.html @@ -0,0 +1,29 @@ +<!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-keyboard-map-allow-helper.html'; + iframe.allow = "keyboard-map"; + 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 Map] getLayoutMap() allowed from within iframe'); + +</script> |