mirror of
https://github.com/servo/servo.git
synced 2025-08-13 09:25:32 +01:00
Update web-platform-tests to revision e3698c7bb3c309df69134e9bc0a375f00535e226
This commit is contained in:
parent
1b38197812
commit
e447ba9856
102 changed files with 1364 additions and 221 deletions
|
@ -32,6 +32,7 @@
|
|||
|
||||
function getNoiseStreamOkCallback(localStream) {
|
||||
gFirstConnection = new RTCPeerConnection(null);
|
||||
test.add_cleanup(() => gFirstConnection.close());
|
||||
gFirstConnection.onicecandidate = onIceCandidateToFirst;
|
||||
localStream.getTracks().forEach(function(track) {
|
||||
gFirstConnection.addTrack(track, localStream);
|
||||
|
@ -52,6 +53,7 @@
|
|||
|
||||
function receiveCall(offerSdp) {
|
||||
gSecondConnection = new RTCPeerConnection(null);
|
||||
test.add_cleanup(() => gSecondConnection.close());
|
||||
gSecondConnection.onicecandidate = onIceCandidateToSecond;
|
||||
gSecondConnection.ontrack = onRemoteTrack;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue