mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
13 lines
392 B
HTML
13 lines
392 B
HTML
|
<script>
|
||
|
var e = new KeyboardEvent('message', { cancelable: true, key: "e" });
|
||
|
|
||
|
console.error('keyboardEvent.html');
|
||
|
console.assert(e.cancelable, 'cancelable true');
|
||
|
console.assert(!e.defaultPrevented, 'false');
|
||
|
e.preventDefault();
|
||
|
console.assert(e.defaultPrevented, 'true');
|
||
|
console.assert(e.type === 'message', 'message');
|
||
|
console.assert(e.key === 'e', 'key e');
|
||
|
console.exit(0);
|
||
|
</script>
|