blob: 6d7e8695cebd156197d8385dc429dc0b5bf82256 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>Media test: document-element-inserted</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<iframe id = 'media'>
</iframe>
<pre id="test">
<script class="testbody" type="text/javascript">
if (navigator.platform.startsWith("Win")) {
SimpleTest.expectAssertions(0, 4);
}
SimpleTest.waitForExplicitFinish();
var loc;
var observe = function(doc){
if (doc == media.contentDocument) {
ok(media.contentDocument.location.toString().includes(loc),
"The loaded media should be " + loc);
next();
}
}
var media = document.getElementById('media');
var tests = [
"../../../media/test/short-video.ogv",
"../../../media/test/sound.ogg",
"../../content/test/image.png"
]
function next() {
if (tests.length) {
var t = tests.shift();
loc = t.substring(t.indexOf("test"));
media.setAttribute("src",t);
}
else {
SpecialPowers.removeObserver(observe, "document-element-inserted");
SimpleTest.finish();
}
}
SpecialPowers.addObserver(observe, "document-element-inserted")
next();
</script>
</pre>
</body>
</html>
|