Re: [whatwg/fullscreen] Consume user gestures in requestFullscreen (#152)

Yes, we expect problems like this.  One possible way to fix this is to reverse the order of the two calls, so replacing:
  `video.requestFullscreen()` then `video.play()`
with
  `video.play()` then `video.requestFullscreen()`
would fix this specific problem.  We expect this to work in most cases because only a handful of APIs consume user activation today (e.g., in Chrome only popups and some "types" of navigation consume).  If the second API used with fullscreen is either popup or navigation, it could be hard to fix easily.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fullscreen/issues/152#issuecomment-494840412

Received on Wednesday, 22 May 2019 14:59:12 UTC