forked from mirrors/gecko-dev
Automatic update from web-platform-tests Add missing dependencies of idlharness.js tests These tests are all slightly broken due to these missing dependencies. -- wpt-commits: a35384596829f01d32d3d247c41f1bfba336b5a1 wpt-pr: 28544
18 lines
528 B
JavaScript
18 lines
528 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: script=./RTCPeerConnection-helper.js
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['webrtc-encoded-transform'],
|
|
['webrtc', 'streams', 'html', 'dom'],
|
|
async idlArray => {
|
|
idlArray.add_objects({
|
|
// TODO: RTCEncodedVideoFrame
|
|
// TODO: RTCEncodedAudioFrame
|
|
RTCRtpSender: [`new RTCPeerConnection().addTransceiver('audio').sender`],
|
|
RTCRtpReceiver: [`new RTCPeerConnection().addTransceiver('audio').receiver`],
|
|
});
|
|
}
|
|
);
|