summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_load_source_empty_type.html
blob: 9ceee9af4629889e3bfa0b54a9d8e7b3e713c11f (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Load resource from source element with empty type</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="manifest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<video id="type"><source src="gizmo.mp4" type></video>
<video id="type-and-equal"><source src="gizmo.mp4" type=></video>
<video id="type-and-equal-quotation-marks"><source src="gizmo.mp4" type=""></video>
<script class="testbody" type="text/javascript">
/**
 * This test is used to ensure that media element can start loading when its
 * child source element with empty type property. We would test following forms,
 * `type`, `type=` and `type=""`.
 */
SimpleTest.waitForExplicitFinish();

const videos = document.getElementsByTagName("video");
const videoNum = videos.length;
let loadedElementsNum = 0;

for (let video of videos) {
	video.addEventListener("loadeddata",
  () => {
  	ok(true, `loaded element '${video.id}'`);
  	if (++loadedElementsNum == videoNum) {
  		SimpleTest.finish();
  	}
  }, { once: true});
}
</script>
</body>
</html>