45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/* import-globals-from head-multiple.js */
|
|
|
|
Services.scriptloader.loadSubScript(
|
|
"chrome://mochitests/content/browser/ipc/glue/test/browser/head-multiple.js",
|
|
this
|
|
);
|
|
|
|
add_setup(async function checkAudioDecodingNonUtility() {
|
|
const isAudioDecodingNonUtilityAllowed = await SpecialPowers.getBoolPref(
|
|
"media.allow-audio-non-utility"
|
|
);
|
|
ok(
|
|
!isAudioDecodingNonUtilityAllowed,
|
|
"Audio decoding should not be allowed on non utility processes by default"
|
|
);
|
|
});
|
|
|
|
add_task(async function testAudioDecodingInUtility() {
|
|
await runTest({ expectUtility: true });
|
|
});
|
|
|
|
add_task(async function testFailureAudioDecodingInRDD() {
|
|
await runTest({ expectUtility: false, expectError: true });
|
|
});
|
|
|
|
add_task(async function testFailureAudioDecodingInContent() {
|
|
const platform = Services.appinfo.OS;
|
|
if (platform === "WINNT") {
|
|
ok(
|
|
true,
|
|
"Manually skipping on Windows because of gfx killing us, cf browser.ini"
|
|
);
|
|
return;
|
|
}
|
|
|
|
await SpecialPowers.pushPrefEnv({
|
|
set: [["media.rdd-process.enabled", false]],
|
|
});
|
|
await runTest({ expectUtility: false, expectRDD: false, expectError: true });
|
|
});
|