tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

popover-hint-crash.html (274B)


      1 <!DOCTYPE html>
      2 
      3 <div popover id=p>Popover</div>
      4 <div popover=hint id=h>Hint</div>
      5 <script>
      6  p.showPopover();
      7  h.showPopover();
      8  h.addEventListener('beforetoggle',() => {
      9    p.hidePopover();
     10  });
     11  p.hidePopover();
     12  // This test passes if it does not crash.
     13 </script>