https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 26e6ef3f13680c4d02b33bf1235884119f9e26e7 authored by James Graham on 04 April 2018, 18:33:40 UTC
Add long timeout to unstable CSP tests, a=testonly on a CLOSED TREE
Tip revision: 26e6ef3
historical.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>
back to top