I have problem with returning from full-screen mode in Chrome Mobile. I found some fullscreen example and added one feature. When browser is in full-screen mode then image border is red.
#root:-webkit-full-screen > .img-wrap > .img-01
{
border: 2px solid red;
}
Sample app you can find here: https://codepen.io/herrmefisto/pen/eraKKg
If you click button then it will open in fullscreen mode and image border will be red. If you push "Esc" button then border will be still red!! On real android device Esc == back button.
I found also that events: webkitfullscreenchange, mozfullscreenchange, fullscreenchange, MSFullscreenChange are not fired when pushing Esc button on keyboard.
There are few libraries (cross browser) like e.q BigScreen (https://brad.is/coding/BigScreen/) but this bug exists also here.
Is anybody know how to make some hack/workaround to make it work?
In desktop Chrome (ver 66) it works fine.