summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mediacapture-streams/historical.https.html
blob: 84326cec0a61adafc27a2f07846b820a983d8d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!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");

test(() => {
  const mediaStream = new MediaStream();
  assert_throws_js(TypeError, () => URL.createObjectURL(mediaStream));
}, "Passing MediaStream to URL.createObjectURL() should throw");

test(() => {
  const mediaStream = new MediaStream();
  assert_false("onactive" in mediaStream);
}, "MediaStream.onactive should not exist");

test(() => {
  const mediaStream = new MediaStream();
  assert_false("oninactive" in mediaStream);
}, "MediaStream.oninactive should not exist");
</script>