summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mst-content-hint/idlharness.window.js
blob: ef0e5e981233d9940616854f791d8626c7a48e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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', 'webrtc', '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];
  }
);