tor-browser

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

ImageCapture-grabFrame-crash.https.html (365B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Repro of https://crbug.com/1374294</title>
      4 <body></body>
      5 <script>
      6  let iframe = document.createElement('iframe');
      7  document.body.appendChild(iframe);
      8  let generator = new iframe.contentWindow.MediaStreamTrackGenerator({kind: 'video'});
      9  const capture = new ImageCapture(generator);
     10  capture.grabFrame();
     11 </script>