forked from mirrors/gecko-dev
Automatic update from web-platform-tests Move jitterBufferTarget tests to main WebRTC spec (#45427) Complementary of https://github.com/w3c/webrtc-pc/pull/2953 -- wpt-commits: bdb28625c739df71379a8e5deeb3afc376087f99 wpt-pr: 45427
18 lines
596 B
HTML
18 lines
596 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<meta name="timeout" content="long">
|
|
<title>Tests RTCRtpReceiver-jitterBufferTarget verified with stats</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/webrtc/RTCPeerConnection-helper.js"></script>
|
|
<script src="/webrtc-extensions/RTCRtpReceiver-jitterBufferTarget-stats-helper.js"></script>
|
|
<body>
|
|
<script>
|
|
'use strict'
|
|
|
|
promise_test(async t => {
|
|
await applyJitterBufferTarget(t, "audio", 300);
|
|
}, `measure raising and lowering audio jitterBufferTarget`);
|
|
|
|
</script>
|
|
</body>
|