[Webkit-unassigned] [Bug 274820] New: Microphone permission popup is hidden in fullscreen

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed May 29 01:58:07 PDT 2024


https://bugs.webkit.org/show_bug.cgi?id=274820

            Bug ID: 274820
           Summary: Microphone permission popup is hidden in fullscreen
           Product: WebKit
           Version: Safari 17
          Hardware: iPhone / iPad
                OS: iOS 17
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebRTC
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: ben.browitt at gmail.com
                CC: youennf at gmail.com

The getUserMedia microphone permission popup is hidden when Safari is in fullscreen.

Tested on iPad 17.5.1

Test:
https://output.jsbin.com/yogecumufe

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>test</title>
  <script>
    async function start() {
      await document.documentElement.requestFullscreen();
      const stream = await navigator.mediaDevices.getUserMedia({audio: true, video: false});      
    }    
  </script>
</head>
<body>
  <button onclick="start()">Start</button>
</body>
</html>

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240529/b402823e/attachment-0001.htm>


More information about the webkit-unassigned mailing list