[w3c/uievents] key-event-viewer shows Unidentified for key event for Chrome for Android (#189)

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