mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
38 lines
933 B
HTML
38 lines
933 B
HTML
<!doctype html>
|
|
<title>Historical WebRTC features</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<div id="log"></div>
|
|
<script>
|
|
test(function() {
|
|
assert_false("reliable" in RTCDataChannel.prototype);
|
|
}, "RTCDataChannel member reliable 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");
|
|
});
|
|
|
|
[
|
|
"DataChannel",
|
|
"mozRTCIceCandidate",
|
|
"mozRTCPeerConnection",
|
|
"mozRTCSessionDescription",
|
|
"webkitRTCPeerConnection",
|
|
].forEach(function(name) {
|
|
test(function() {
|
|
assert_false(name in window);
|
|
}, name + " interface should not exist");
|
|
});
|
|
</script>
|