https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 055367b2fd8b94dc54cccddfd069fb9bcd5261f1 authored by Robert Ma on 15 March 2018, 21:39:41 UTC
Document how to install the CA cert on Android
Tip revision: 055367b
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