summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/keyboard-lock/navigator-keyboard-lock-two-sequential-requests.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/keyboard-lock/navigator-keyboard-lock-two-sequential-requests.https.html')
-rw-r--r--testing/web-platform/tests/keyboard-lock/navigator-keyboard-lock-two-sequential-requests.https.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/keyboard-lock/navigator-keyboard-lock-two-sequential-requests.https.html b/testing/web-platform/tests/keyboard-lock/navigator-keyboard-lock-two-sequential-requests.https.html
new file mode 100644
index 0000000000..520da36dfb
--- /dev/null
+++ b/testing/web-platform/tests/keyboard-lock/navigator-keyboard-lock-two-sequential-requests.https.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+'use strict';
+
+promise_test(() => {
+ return navigator.keyboard.lock(["KeyA", "KeyB"])
+ .then(() => {
+ return navigator.keyboard.lock(["KeyC", "KeyD"]);
+ });
+}, '[Keyboard Lock] keyboard.lock called twice sequentially');
+
+</script>