summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_standalone.html
blob: 620878a3949f7ace6e4ce1693302130054bc177c (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Media test: standalone video documents</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>
</head>
<body onload="doTest()">

<pre id="test">
<script class="testbody" type="text/javascript">

var iframes = [];

for (let i=0; i<gSmallTests.length; ++i) {
  var test = gSmallTests[i];

  // We can't play WAV files in stand alone documents, so just don't
  // run the test on non-video content types.
  var tag = getMajorMimeType(test.type);
  if (tag != "video" || !document.createElement("video").canPlayType(test.type))
    continue;

  let f = document.createElement("iframe");
  f.src = test.name;
  f._test = test;
  f.id = "frame" + i;
  iframes.push(f);
  document.body.appendChild(f);
}


function filename(uri) {
  return uri.substr(uri.lastIndexOf("/")+1);
}

function doTest()
{
  for (let i=0; i<iframes.length; ++i) {
    let f = document.getElementById(iframes[i].id);
    var v = f.contentDocument.body.firstChild;
    is(v.tagName.toLowerCase(), "video", "Is video element");
    var src = filename(v.currentSrc);
    is(src, iframes[i]._test.name, "Name ("+src+") should match ("+iframes[i]._test.name+")");
    is(v.controls, true, "Controls set (" + src + ")");
    is(v.autoplay, true, "Autoplay set (" + src + ")");
  }
  SimpleTest.finish();
}

if (!iframes.length) {
  todo(false, "No types supported");
} else {
  SimpleTest.waitForExplicitFinish();
}

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