summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_mediarecorder_record_changing_video_resolution.html
blob: 96329ff2c9dc28b20c66fa2817c2da3c7d1641dd (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE HTML>
<html>
<head>
  <title>Test MediaRecorder Recording canvas stream that dynamically changes resolution</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<div id="content">
</div>
<script class="testbody" type="text/javascript">

function startTest() {
  var content = document.getElementById("content");

  var canvas = document.createElement("canvas");
  canvas.width = canvas.height = 100;

  var ctx = canvas.getContext("2d");
  ctx.fillStyle = "red";
  ctx.fillRect(0, 0, canvas.width, canvas.height);

  var stream = canvas.captureStream(0);

  var numErrorRaised = 0;
  var numDataAvailabledRaised = 0;

  mediaRecorder = new MediaRecorder(stream);
  is(mediaRecorder.stream, stream,
     "Media recorder stream = canvas stream at the start of recording");

  mediaRecorder.onwarning = () => ok(false, "onwarning unexpectedly fired");

  mediaRecorder.onerror = err => {
    info("Got 'error' event, " + err.name + " (" + err.message + ")");
    ++numErrorRaised;
  };

  mediaRecorder.ondataavailable = ev => {
    info("Got 'dataavailable' event");
    ++numDataAvailabledRaised;
  };

  mediaRecorder.onstart = () => {
    canvas.width = canvas.height = canvas.width * 1.1;
    ctx.fillStyle = "blue";
    ctx.fillRect(0, 0, canvas.width, canvas.height);
    stream.requestFrame();
  };

  mediaRecorder.onstop = () => {
    info("Got 'stop' event");
    is(numErrorRaised, 1, "Should have gotten 1 error event");
    is(numDataAvailabledRaised, 1, "Should have gotten 1 dataavailable event");
    SimpleTest.finish();
  };

  mediaRecorder.start();
  is(mediaRecorder.state, "recording", "Media recorder should be recording");
}

SimpleTest.waitForExplicitFinish();
startTest();

</script>
</pre>
</body>
</html>