https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 238bd0377cc35e0f367f63b7e16d912f94ed7845 authored by Chris Nardi on 03 April 2018, 03:08:55 UTC
Serialize font shorthand like any other shorthand
Tip revision: 238bd03
historical.html
<!doctype html>
<title>Historical Media Capture and Streams features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
  assert_false("webkitMediaStream" in window);
}, "webkitMediaStream interface should not exist");

test(function() {
  assert_false("webkitGetUserMedia" in navigator);
}, "navigator.webkitGetUserMedia should not exist");

test(function() {
  assert_false("mozGetUserMedia" in navigator);
}, "navigator.mozGetUserMedia should not exist");
</script>
back to top