mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
Update web-platform-tests to revision d04c0d50dbbf7752c27957005a5a659701b781ad
This commit is contained in:
parent
ff58cb0a3f
commit
44c252aede
56 changed files with 1921 additions and 67 deletions
|
@ -86,11 +86,15 @@ property to true in Firefox.
|
|||
|
||||
var onIceCandidateToFirst = test.step_func(function(event) {
|
||||
// If event.candidate is null = no more candidates.
|
||||
gSecondConnection.addIceCandidate(event.candidate);
|
||||
if (event.candidate) {
|
||||
gSecondConnection.addIceCandidate(event.candidate);
|
||||
}
|
||||
});
|
||||
|
||||
var onIceCandidateToSecond = test.step_func(function(event) {
|
||||
gFirstConnection.addIceCandidate(event.candidate);
|
||||
if (event.candidate) {
|
||||
gFirstConnection.addIceCandidate(event.candidate);
|
||||
}
|
||||
});
|
||||
|
||||
var onRemoteTrack = test.step_func(function(event) {
|
Loading…
Add table
Add a link
Reference in a new issue