1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

fuchsia_web / webengine / test / data / check_mic_permission.html [blame]

<html>
  <body>
    <video></video>
    <script>
      window.onload = () => {
        navigator.permissions.query({name: 'microphone'}).then(r => {
          document.title = r.state;
        });
      }
    </script>
  </body>
</html>