-
Notifications
You must be signed in to change notification settings - Fork 54
/
historical.html
51 lines (48 loc) · 1.16 KB
/
historical.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<title>Historical WebRTC features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
[
'reliable',
'maxRetransmitTime',
].forEach((member) => {
test(() => {
assert_false(member in RTCDataChannel.prototype);
}, `RTCDataChannel member ${member} should not exist`);
});
[
"addStream",
"createDTMFSender",
"getLocalStreams",
"getRemoteStreams",
"getStreamById",
"onaddstream",
"onremovestream",
"removeStream",
"updateIce",
].forEach(function(name) {
test(function() {
assert_false(name in RTCPeerConnection.prototype);
}, "RTCPeerConnection member " + name + " should not exist");
});
[
"setDirection",
].forEach(function(name) {
test(function() {
assert_false(name in RTCRtpTransceiver.prototype);
}, "RTCRtpTransceiver member " + name + " should not exist");
});
[
"DataChannel",
"mozRTCIceCandidate",
"mozRTCPeerConnection",
"mozRTCSessionDescription",
"webkitRTCPeerConnection",
].forEach(function(name) {
test(function() {
assert_false(name in window);
}, name + " interface should not exist");
});
</script>