1
0
Fork 0
firefox/testing/web-platform/tests/webrtc-encoded-transform/idlharness.https.window.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
663 B
JavaScript

// META: variant=?exclude=SFrameTransform.*
// META: variant=?include=SFrameTransform.*
// META: script=/common/subset-tests-by-key.js
// 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`],
});
}
);