https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 03b7db51f21ce2a157454020bb46301b825152a5 authored by Alex Moshchuk on 13 April 2018, 23:12:06 UTC
Reland 2: Use PostTask to schedule cross-process postMessage forwarding.
Tip revision: 03b7db5
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