https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 42a98283681188744c47f2bba33ad818a5b8d585 authored by Stephen Chenney on 20 December 2018, 17:40:54 UTC
Fix table cell background painting under zoom and min-width
Tip revision: 42a9828
idlharness.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: script=/webrtc/RTCPeerConnection-helper.js

'use strict';

idl_test(
  ['mst-content-hint'],
  ['mediacapture-streams', 'dom'],
  async idl_array => {
    idl_array.add_objects({
      MediaStreamTrack: ['audioTrack', 'videoTrack'],
    });

    const stream = await getNoiseStream({ audio: true, video: true });
    self.audioTrack = stream.getAudioTracks()[0];
    self.videoTrack = stream.getVideoTracks()[0];
  }
);
back to top