mirror of
https://github.com/servo/servo.git
synced 2025-08-27 08:08:19 +01:00
Update web-platform-tests to revision be5419e845d39089ba6dc338c1bd0fa279108317
This commit is contained in:
parent
aa199307c8
commit
2b6f573eb5
3440 changed files with 109438 additions and 41750 deletions
|
@ -64,7 +64,7 @@
|
|||
assert_equals(pc.getConfiguration().iceTransportPolicy, 'all');
|
||||
|
||||
pc.setConfiguration({ iceTransportPolicy: 'relay' });
|
||||
assert_equals(pc.getConfiguration(), iceTransportPolicy, 'relay');
|
||||
assert_equals(pc.getConfiguration().iceTransportPolicy, 'relay');
|
||||
}, `setConfiguration({ iceTransportPolicy: 'relay' }) with initial iceTransportPolicy all should succeed`);
|
||||
|
||||
test(() => {
|
||||
|
@ -72,7 +72,7 @@
|
|||
assert_equals(pc.getConfiguration().iceTransportPolicy, 'relay');
|
||||
|
||||
pc.setConfiguration({ iceTransportPolicy: 'all' });
|
||||
assert_equals(pc.getConfiguration(), iceTransportPolicy, 'all');
|
||||
assert_equals(pc.getConfiguration().iceTransportPolicy, 'all');
|
||||
}, `setConfiguration({ iceTransportPolicy: 'all' }) with initial iceTransportPolicy relay should succeed`);
|
||||
|
||||
test(() => {
|
||||
|
@ -81,7 +81,7 @@
|
|||
|
||||
// default value for iceTransportPolicy is all
|
||||
pc.setConfiguration({});
|
||||
assert_equals(pc.getConfiguration(), iceTransportPolicy, 'all');
|
||||
assert_equals(pc.getConfiguration().iceTransportPolicy, 'all');
|
||||
}, `setConfiguration({}) with initial iceTransportPolicy relay should set new value to all`);
|
||||
|
||||
config_test(makePc => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue