910e62b5创建于 1月15日历史提交
<!DOCTYPE html>
<html>
<head>
  <style>
    permission {
      font-size: xxx-large;
      margin: 0px;
      border: 0px;
    }
  </style>
</head>
<body>
  <div id="parent">
    <permission id="geolocation" type="geolocation"></permission>
  </div>
  <script>
    function checkGeolocation() {
      navigator.permissions.query({name: 'geolocation'}).then(permission => {
          window.document.title = permission.state;
          permission.onchange = () => {
            window.document.title = permission.state;
          };
      });
    }

    document.getElementById('parent').addEventListener('promptaction', (event) => {
      window.document.title = 'promptaction';
    });
    document.getElementById('parent').addEventListener('promptdismiss', (event) => {
      window.document.title = 'promptdismiss';
    });
  </script>
</body>
</html>