// Given an element id, returns the first font face name encountered.
let fontUsed = id => {
let element = document.getElementById(id),
range = document.createRange();
range.selectNode(element);
return InspectorUtils.getUsedFontFaces(range)[0].CSSFamilyName;
};
// A map of the default mono, sans and serif fonts, obtained when
// whitelisting is disabled.
const fonts = { mono: fontUsed("mono"),
sans: fontUsed("sans"),
serif: fontUsed("serif") };
let hack = 0;
// Set the font whitelist to contain none, some, or all of the
// default mono, sans, and serif fonts. Check that the rendering
// of our three test elements uses only fonts present in the
// whitelist.
let testFontWhitelist = async function(useMono, useSans, useSerif) {
let whitelist = [];
if (useMono) {
whitelist.push(fonts.mono);
}
if (useSans) {
whitelist.push(fonts.sans);
}
if (useSerif) {
whitelist.push(fonts.serif);
}
await SpecialPowers.pushPrefEnv({"set": [["font.system.whitelist",
whitelist.join(", ")]]});
await new Promise(SimpleTest.executeSoon);
await SpecialPowers.setIntPref("font.fixme.hack", hack++);
await new Promise(SimpleTest.executeSoon);
// If whitelist is empty, then whitelisting is considered disabled
// and all fonts are allowed.
info("font whitelist: " + JSON.stringify(whitelist));
let whitelistEmpty = whitelist.length === 0;
is(useMono || whitelistEmpty, fontUsed("mono") === fonts.mono, "Correct mono whitelisting state; got " + fontUsed("mono") + ", requested " + fonts.mono);
is(useSans || whitelistEmpty, fontUsed("sans") === fonts.sans, "Correct sans whitelisting state; got " + fontUsed("sans") + ", requested " + fonts.sans);
is(useSerif || whitelistEmpty, fontUsed("serif") === fonts.serif, "Correct serif whitelisting state; got " + fontUsed("serif") + ", requested " + fonts.serif);
};
// Run tests to confirm that only whitelisting fonts are present in a
// rendered page. Try turning mono, sans, and serif off and on in
// every combination.
add_task(async function() {
for (let useMono of [false, true]) {
for (let useSans of [false, true]) {
for (let useSerif of [false, true]) {
await testFontWhitelist(useMono, useSans, useSerif);
}
}
}
});
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.