gecko/content/media/test/test_documentTitle.html
Robert O'Callahan 88d530321b Bug 981470. Combine test_audioDocumentTitle and test_videoDocumentTitle and avoid testing WAV files, which aren't supposed to load properly in <iframe>s. r=cpearce
--HG--
rename : content/media/test/test_audioDocumentTitle.html => content/media/test/test_documentTitle.html
extra : rebase_source : 27016e8c3a15dcbfeb9462a17f27b043ac977d75
2014-03-10 10:45:14 +08:00

68 lines
1.6 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=463830
-->
<head>
<title>Test for Bug 463830</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="manifest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=463830">Mozilla Bug 463830</a>
<p id="display"></p>
<iframe id="i"></iframe>
<div id="content" style="display: none">
</div>
<audio id="dummy"></audio>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 463830 **/
var gTestNum = 0;
addLoadEvent(runTest);
var title = "WRONG";
var i = document.getElementById("i");
function runTest() {
i.addEventListener("load", function() {
dump(title + " " + i.contentDocument.title + "\n");
is(i.contentDocument.title, title, "Checking doc title for " + title);
setTimeout(nextTest, 0);
}, false);
nextTest();
}
function nextTest() {
if (gTestNum == gSmallTests.length) {
SimpleTest.finish();
return;
}
var test = gSmallTests[gTestNum];
gTestNum++;
if (!dummy.canPlayType(test.type) ||
test.type == "audio/x-wav") {
// Skip WAVE files since we deliberately don't treat WAVE files as a type
// we can handle in an <object> or <iframe> (bug 475110)
return nextTest();
}
dump("Setting i.src to " + test.name + "\n");
title = test.name;
i.src = test.name;
}
SimpleTest.waitForExplicitFinish();
</script>
</pre>
</body>
</html>