34 lines
903 B
HTML
34 lines
903 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Audio decoder not in Utility process</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script src="head.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script type="text/javascript">
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
(async function() {
|
|
const platform = SpecialPowers.Services.appinfo.OS;
|
|
for (let {src, expectations} of audioTestData()) {
|
|
if (!(platform in expectations)) {
|
|
info(`Skipping ${src} for ${platform}`);
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
await runMochitestUtilityAudio(src, { expectUtility: "", expectDecoder: expectations[platform].decoder, expectContent: true, expectJava: false, expectError: true });
|
|
} catch (ex) {
|
|
ok(false, `Failure for ${src}`);
|
|
}
|
|
}
|
|
|
|
SimpleTest.finish();
|
|
})();
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|