tor-browser

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

video.yaml (318B)


      1 - name: 2d.video.invalid
      2  desc: Verify test doesn't crash with invalid video.
      3  canvas_types: ['HtmlCanvas']
      4  code: |
      5    var v = document.createElement('video');
      6    v.play();
      7    // Test is deliberately not waiting for the 'playing' event to fire.
      8    ctx.createPattern(v, 'repeat-x');
      9    ctx.drawImage(v, 0, 0);