blob: 3e9add3c61195a6b054df4b8585703e20477b2dc (
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
70
71
72
73
74
75
76
77
78
79
|
<!doctype html>
<meta charset="utf-8">
<html>
<title>MediaRecorder destroy script execution context</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<iframe src="support/MediaRecorder-iframe.html" id="subFrame-start" name="subFrameStart"></iframe>
<iframe src="support/MediaRecorder-iframe.html" id="subFrame-stop" name="subFrameStop"></iframe>
<iframe src="support/MediaRecorder-iframe.html" id="subFrame-allTrackEnded" name="subFrameAllTrackEnded"></iframe>
<iframe src="support/MediaRecorder-iframe.html" id="subFrame-audioBitrateMode" name="subFrameAudioBitrateMode"></iframe>
<script>
var iframeForCallingStart = document.getElementById('subFrame-start');
var iframeForCallingStop = document.getElementById('subFrame-stop');
var iframeForAllTrackEnded = document.getElementById('subFrame-allTrackEnded');
var iframeForAudioBitrateMode = document.getElementById('subFrame-audioBitrateMode');
var testForCallingStart = async_test('MediaRecorder will throw when start() is called and the script execution context is going away');
var testForCallingStop = async_test('MediaRecorder will not fire the stop event when stop() is called and the script execution context is going away');
var testForAllTrackEnded = async_test('MediaRecorder will not fire the stop event when all tracks are ended and the script execution context is going away');
var testForAudioBitrateMode = async_test('MediaRecorder will not crash on accessing audioBitrateMode when the script execution context is going away');
iframeForCallingStart.onload = function(e) {
let testWindow = subFrameStart.window;
testWindow.prepareForTest(testForCallingStart);
let exceptionCtor = testWindow.DOMException;
const recorder = subFrameStart.window.recorder;
iframeForCallingStart.remove();
testForCallingStart.step(function() {
assert_throws_dom('NotSupportedError', exceptionCtor, () => recorder.start(),
"MediaRecorder.start() should throw");
});;
testForCallingStart.done();
};
iframeForCallingStop.onload = function(e) {
subFrameStop.window.prepareForTest(testForCallingStop);
const recorder = subFrameStop.window.recorder;
recorder.ondataavailable = testForCallingStop.step_func(blobEvent => {
iframeForCallingStop.remove();
testForCallingStop.step_timeout(testForCallingStop.step_func_done(), 0);
});
recorder.onstop = testForCallingStop.unreached_func('Unexpected stop event');
recorder.start();
testForCallingStop.step(function() {
assert_equals(recorder.state, 'recording', 'MediaRecorder has been started successfully');
});
subFrameStop.window.control.addVideoFrame();
recorder.stop();
};
iframeForAllTrackEnded.onload = function(e) {
subFrameAllTrackEnded.window.prepareForTest(testForAllTrackEnded);
const recorder = subFrameAllTrackEnded.window.recorder;
recorder.ondataavailable = testForAllTrackEnded.step_func(blobEvent => {
iframeForAllTrackEnded.remove();
testForAllTrackEnded.step_timeout(testForAllTrackEnded.step_func_done(), 0);
});
recorder.onstop = testForAllTrackEnded.unreached_func('Unexpected stop event');
recorder.start();
testForAllTrackEnded.step(function() {
assert_equals(recorder.state, 'recording', 'MediaRecorder has been started successfully');
});
subFrameAllTrackEnded.window.control.addVideoFrame();
subFrameAllTrackEnded.window.video.getVideoTracks()[0].stop();
};
iframeForAudioBitrateMode.onload = testForAudioBitrateMode.step_func(function(e) {
subFrameAudioBitrateMode.window.prepareForTest(testForAudioBitrateMode);
const recorder = subFrameAudioBitrateMode.window.recorder;
iframeForAudioBitrateMode.remove();
recorder.audioBitrateMode;
testForAudioBitrateMode.done();
});
</script>
</body>
</html>
|