Revision 23f93ed2136650611dbb91bbe2e78698a1f75806 authored by Ben Wagner on 11 December 2018, 21:09:19 UTC, committed by Philip Jägenstedt on 20 December 2018, 12:06:11 UTC
The change to Lato-Medium is to add a mapping from U+fb06 to the 'st'
ligature glyph, which was previously only accessible through the 'dlig'
feature.

This tests https://github.com/w3c/csswg-drafts/pull/3430

Change-Id: Iaf0ff1f99f3ec282bacb0e3cb44ede27d47fac5a
1 parent 1bdc13d
Raw File
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");
});

[
  "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>
back to top