mirror of
https://github.com/servo/servo.git
synced 2025-09-01 10:38:25 +01:00
Update web-platform-tests to revision be959408023fe02cf79abe70f6018598a7004a88
This commit is contained in:
parent
a76777b115
commit
761c8bc2a9
171 changed files with 2434 additions and 907 deletions
|
@ -57,6 +57,8 @@
|
|||
async_test(t => {
|
||||
const pc = new RTCPeerConnection();
|
||||
|
||||
t.add_cleanup(() => pc.close());
|
||||
|
||||
const onIceGatheringStateChange = t.step_func(() => {
|
||||
const { iceGatheringState } = pc;
|
||||
|
||||
|
@ -74,7 +76,6 @@
|
|||
.then(offer => pc.setLocalDescription(offer))
|
||||
.then(err => t.step_func(err =>
|
||||
assert_unreached(`Unhandled rejection ${err.name}: ${err.message}`)));
|
||||
|
||||
}, 'iceGatheringState should eventually become complete after setLocalDescription');
|
||||
|
||||
/*
|
||||
|
@ -97,8 +98,11 @@
|
|||
*/
|
||||
async_test(t => {
|
||||
const pc1 = new RTCPeerConnection();
|
||||
t.add_cleanup(() => pc1.close());
|
||||
const pc2 = new RTCPeerConnection();
|
||||
|
||||
t.add_cleanup(() => pc2.close());
|
||||
|
||||
const onIceGatheringStateChange = t.step_func(() => {
|
||||
const { iceGatheringState } = pc2;
|
||||
|
||||
|
@ -131,7 +135,6 @@
|
|||
|
||||
exchangeIceCandidates(pc1, pc2);
|
||||
doSignalingHandshake(pc1, pc2);
|
||||
|
||||
}, 'connection with one data channel should eventually have connected connection state');
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue