summaryrefslogtreecommitdiffstats
path: root/gfx/tests/mochitest/test_font_whitelist.html
blob: 52c88662c2bc2764f94b13089a8c3577a6eefd9e (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1121643
-->
<head>
  <title>Test for Bug 1121643</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/SpawnTask.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=1121643">Mozilla Bug 1121643</a>
<span id="mono" style="font-family: monospace; font-size: 64px;">M</span>
<span id="sans" style="font-family: sans-serif; font-size: 64px;">M</span>
<span id="serif" style="font-family: serif; font-size: 64px;">M</span>
<div id="content" style="display: none">

</div>
<script class="testbody" type="application/javascript;version=1.7">

/** Test for Bug 1121643 **/

const DOMUtils =  SpecialPowers.Cc["@mozilla.org/inspector/dom-utils;1"]
                               .getService(SpecialPowers.Ci.inIDOMUtils);

// 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 DOMUtils.getUsedFontFaces(range).item(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") };

// 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 = function* (useMono, useSans, useSerif) {
  let whitelist = [];
  if (useMono) {
    whitelist.push(fonts.mono);
  }
  if (useSans) {
    whitelist.push(fonts.sans);
  }
  if (useSerif) {
    whitelist.push(fonts.serif);
  }
  yield SpecialPowers.pushPrefEnv({"set": [["font.system.whitelist",
                                            whitelist.join(", ")]]});
  // 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(function* () {
  for (let useMono of [false, true]) {
    for (let useSans of [false, true]) {
      for (let useSerif of [false, true]) {
        yield testFontWhitelist(useMono, useSans, useSerif);
      }
    }
  }
});

</script>
</body>
</html>