blob: 87b10ee49a9c8cbbf6257ae275990f66dc823973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
'use strict';
test(() => {
assert_equals(navigator.keyboard.unlock(),
undefined);
}, '[Keyboard Lock] keyboard.unlock');
</script>
|