https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 10f69dbaa99bb91a7cf9f290fff6503b0ab56ee4 authored by James Graham on 17 September 2018, 15:10:55 UTC
Correctly handle ScriptTimeoutException in the WebDriver executor
Tip revision: 10f69db
idlharness.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

// https://w3c.github.io/mediacapture-fromelement/

'use strict';

idl_test(
  ['mediacapture-fromelement'],
  ['mediacapture-streams', 'html', 'dom'],
  idl_array => {
    // Ignored errors will be surfaced when media/canvas undefined below.
    try {
      self.media = document.createElement('media');
      media.width = media.height = 10;
      document.body.appendChild(media);
    } catch (e) { }

    try {
      self.canvas = document.createElement('canvas');
      document.body.appendChild(canvas);
      canvas.width = canvas.height = 10;
      self.track = canvas.captureStream().getTracks()[0];
    } catch (e) { }

    idl_array.add_objects({
      HTMLMediaElement: ['media'],
      HTMLCanvasElement: ['canvas'],
      CanvasCaptureMediaStreamTrack: ['track'],
    });
  }
);
back to top