OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <meta charset="utf-8"> | |
3 <title>RTCPeerConnectionIceEvent constructor</title> | |
4 <script src="../../resources/testharness.js"></script> | |
5 <script src="../../resources/testharnessreport.js"></script> | |
6 <script> | |
7 test(function() { | |
8 assert_equals(RTCPeerConnectionIceEvent.length, 1); | |
9 var e = new RTCPeerConnectionIceEvent('type'); | |
10 assert_equals(e.candidate, null); | |
11 assert_false(e.bubbles); | |
12 assert_false(e.cancelable); | |
13 }, 'RTCPeerConnectionIceEvent constructor with no candidate attribute provided') ; | |
14 | |
15 test(function() { | |
16 var e = new RTCPeerConnectionIceEvent('type', { candidate: null }); | |
17 assert_equals(e.candidate, null); | |
18 }, 'RTCPeerConnectionIceEvent constructor with cnadidate paased as null.'); | |
foolip
2016/11/15 19:15:21
s/cnadidate paased/candidate passed/
lunalu1
2016/11/15 19:27:01
Done.
| |
19 | |
20 test(function() { | |
21 var e = new RTCPeerConnectionIceEvent('type', { candidate: undefined }); | |
22 assert_equals(e.candidate, null); | |
23 }, 'RTCPeerConnectionIceEvent constructor with candidate paased as "undefined".' ); | |
foolip
2016/11/15 19:15:21
s/paased/passed/
lunalu1
2016/11/15 19:27:01
Done.
| |
24 | |
25 test(function() { | |
26 var c = new RTCIceCandidate({ candidate: 'candidate', sdpMid: 'sdpMid', sdpMLi neIndex: 1 }); | |
27 var e = new RTCPeerConnectionIceEvent('type', { candidate: c, url: 'url', bubb les: true, cancelable: true}); | |
28 assert_equals(e.candidate, c); | |
foolip
2016/11/15 19:15:21
Also assert_equals(e.type, 'type') in at least one
lunalu1
2016/11/15 19:27:01
Done.
| |
29 // TODO(lunalu): When url is added to RTCPeerConnectionIceEventInitializer, | |
30 // update the assertion to be: "assert_equals(e.url, 'url);". | |
31 assert_equals(e.url, undefined); | |
32 assert_true(e.bubbles); | |
33 assert_true(e.cancelable); | |
34 }, 'RTCPeerConnectionIceEvent constructor with full arguments.'); | |
35 </script> | |
OLD | NEW |