I cannot use an alphanumeric keyboard in an input element when using the FullScreen API in Google Chrome

In Google Chrome, when I use the FullScreen API and I try to enter alphanumeric content in an input element, it does nothing. It works in Firefox.

Is this a workaround for this problem in Google Chrome?

+5
source share
1 answer
docElm.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);

check this link

Content with link:

Full Screen with Key

For security reasons, most keyboard inputs are locked in full screen mode. However, in Google Chrome, you can request keyboard support by calling a method with a flag:

docElm.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);

This does not work in Safari, and the method will not be called.

Firefox , , . , , requestFullscreenWithKeys, , , .

+6

All Articles