- From: Roman Frołow <notifications@github.com>
- Date: Fri, 16 Mar 2018 05:38:15 -0700
- To: w3c/uievents <uievents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 16 March 2018 12:38:40 UTC
Simple test shows that `key` event works
```javascript
document.querySelector('input').addEventListener("keydown", function (event) {
document.querySelector('div').innerText = event.key || 'xd';
}, true);
```
https://jsfiddle.net/rofrol/7ofwaboj/14/
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/uievents/issues/189
Received on Friday, 16 March 2018 12:38:40 UTC