Bug 1880701 Comment 13 Edit History

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

Hi Joseph, Thanks for the report. I can reproduce this. When I use the mouse to click and switch between tabs, the space key works as expected, but it does not when I am using the ctrl-tab key.
Hi Joseph, Thanks for the report. I can reproduce this. When I use the mouse to click and switch between tabs, the space key works as expected, but it does not when I am using the ctrl-tab key. 

BTW, in both cases, neither focus nor focusout event is observed in the video element by adding the following code in the Web Console:
```javascript
const videos = document.getElementsByTagName("video");
videos[0].addEventListener("focus", (event) => { console.log("focus"); });
videos[0].addEventListener("focusout", (event) => { console.log("focusout"); });
```

Back to Bug 1880701 Comment 13