gecko-dev/dom/media/test/test_fragment_play.html
Brian Grinstead 0d460e3432 Bug 1544322 - Part 2.2 - Remove the [type] attribute for one-liner <script> tags loading files in /tests/SimpleTest/ in dom/ r=bzbarsky
This is split from the previous changeset since if we include dom/ the file size is too
large for phabricator to handle.

This is an autogenerated commit to handle scripts loading mochitest harness files, in
the simple case where the script src is on the same line as the tag.

This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170
using the `--part 2` argument.

Differential Revision: https://phabricator.services.mozilla.com/D27457

--HG--
extra : moz-landing-system : lando
2019-04-16 03:53:28 +00:00

92 lines
2.8 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Media test: seek tests</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script type="text/javascript" src="manifest.js"></script>
<script type="text/javascript" src="fragment_play.js"></script>
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">
PARALLEL_TESTS = 1;
var manager = new MediaTestManager;
// Fragment parameters to try. These tests
// try playing the video. Tests for other fragment
// formats are in test_fragment_noplay.html.
var gFragmentParams = [
{ fragment: "", start: null, end: null },
{ fragment: "#t=,", start: null, end: null },
{ fragment: "#t=3,3", start: null, end: null },
{ fragment: "#t=7,3", start: null, end: null },
{ fragment: "#t=7,15", start: 7, end: null },
{ fragment: "#t=15,20", start: 9.287982, end: null },
{ fragment: "#t=5", start: 5, end: null },
{ fragment: "#t=5.5", start: 5.5, end: null },
{ fragment: "#t=5,", start: null, end: null },
{ fragment: "#t=,5", start: 0, end: 5, todo: "See bugs 682141 and 720248" },
{ fragment: "#t=2.5,5.5", start: 2.5, end: 5.5, todo: "See bugs 682141 and 720248" },
{ fragment: "#t=1,2.5", start: 1, end: 2.5, todo: "See bugs 682141 and 720248" },
{ fragment: "#t=,15", start: 0, end: null }
];
function createTestArray() {
var tests = [];
var tmpVid = document.createElement("video");
for (var testNum=0; testNum<gFragmentTests.length; testNum++) {
var test = gFragmentTests[testNum];
if (!tmpVid.canPlayType(test.type)) {
continue;
}
for (var fragNum=0; fragNum<gFragmentParams.length; fragNum++) {
var p = gFragmentParams[fragNum];
var t = new Object;
t.name = test.name + p.fragment;
t.type = test.type;
t.duration = test.duration;
t.start = p.start;
t.end = p.end;
t.todo = p.todo;
tests.push(t);
}
}
return tests;
}
function startTest(test, token) {
if (test.todo) {
todo(false, test.todo);
return;
}
var v = document.createElement('video');
manager.started(token);
v.preload = "metadata";
v.src = test.name;
v.token = token;
v.controls = true;
document.body.appendChild(v);
var name = test.name + " fragment test";
var localIs = function(name) { return function(a, b, msg) {
is(a, b, name + ": " + msg);
}}(name);
var localOk = function(name) { return function(a, msg) {
ok(a, name + ": " + msg);
}}(name);
var localFinish = function(v, manager) { return function() {
removeNodeAndSource(v);
manager.finished(v.token);
}}(v, manager);
window['test_fragment_play'](v, test.start, test.end, localIs, localOk, localFinish);
}
manager.runTests(createTestArray(), startTest);
</script>
</pre>
</body>
</html>