mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3dfd6c1bac
--HG-- extra : rebase_source : d635a4f39c587d4d381b486dd63de747865b77a2
51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>Check the values of appendWindowStart and appendWindowEnd after abort()</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="log"></div>
|
|
|
|
<script>
|
|
var video = document.createElement('video');
|
|
var mimes = ['video/webm; codecs="vorbis,vp8"', 'video/mp4'];
|
|
|
|
//check the browser supports the MIME used in this test
|
|
function isTypeSupported(mime) {
|
|
if(!MediaSource.isTypeSupported(mime)) {
|
|
this.step(function() {
|
|
assert_unreached("Browser doesn't support the MIME used in this test: " + mime);
|
|
});
|
|
this.done();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
function mediaTest(mime) {
|
|
async_test(function(t) {
|
|
if(!isTypeSupported.bind(t)(mime)) {
|
|
return;
|
|
}
|
|
var mediaSource = new MediaSource();
|
|
mediaSource.addEventListener('sourceopen', function(e) {
|
|
var sourceBuffer = mediaSource.addSourceBuffer(mime);
|
|
sourceBuffer.abort();
|
|
t.step(function() {
|
|
assert_equals(sourceBuffer.appendWindowStart, 0);
|
|
assert_equals(sourceBuffer.appendWindowEnd, Number.POSITIVE_INFINITY);
|
|
});
|
|
t.done();
|
|
});
|
|
video.src = window.URL.createObjectURL(mediaSource);
|
|
}, 'SourceBuffer#abort() (' + mime + '): Check the values of appendWindowStart and appendWindowEnd.');
|
|
}
|
|
mimes.forEach(function(mime) {
|
|
mediaTest(mime);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|