Bug 1530220 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

'carriage return' is a common key which user might use to start media, so we should take account it as a vaild user gesture input.

Since its pseudo char code is zero, we have to check its key code in order to distinguish it from other controls keys such as shift, alt...
`carrige return` and `space` are common keys which user might use to start media, so we should take account them as vaild user gesture inputs.

`tab` is also a common interactive key which user will use, and Chrome treats it as a valid input as well.

As their pseudo char code are zero, we have to check their key code in order to distinguish them from other controls keys such as shift, alt...
`carriage return` and `space` are common keys which user might use to start media, so we should take account them as vaild user gesture inputs.

`tab` is also a common interactive key which user will use, and Chrome treats it as a valid input as well.

As their pseudo char code are zero, we have to check their key code in order to distinguish them from other controls keys such as shift, alt...

Back to Bug 1530220 Comment 1