summaryrefslogtreecommitdiffstats
path: root/widget/tests/system_font_changes.xhtml
blob: 1cef6500153f8d93f57bcb71751c56e8e8e7f3b1 (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
<?xml version="1.0"?>

<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<?xml-stylesheet href="chrome://global/skin" type="text/css"?>

<window id="system_font_changes_window"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        width="300"
        height="300"
        onload="start();">

<span id="target" style="font:menu">Hello world</span>

<script type="application/javascript"><![CDATA[
  function is(condition, message) {
    window.arguments[0].SimpleTest.is(condition, message);
  }
  function registerCleanupFunction(func) {
    window.arguments[0].SimpleTest.registerCleanupFunction(func);
  }

  async function waitForFrame() {
    return new Promise(resolve => {
      requestAnimationFrame(resolve);
    });
  }

  let windowUtils = window.windowUtils;
  async function start() {
    await waitForFrame();

    const originalSystemFont = windowUtils.systemFont;
    registerCleanupFunction(() => {
      windowUtils.systemFont = originalSystemFont;
    });

    windowUtils.systemFont = 'Sans 11';
    is(windowUtils.systemFont, 'Sans 11');

    // Wait for two frames for the safety since the notification for system
    // font changes is asynchronously processed.
    await waitForFrame();
    await waitForFrame();

    const target = document.getElementById('target');
    is(getComputedStyle(target).fontFamily, 'Sans');

    windowUtils.systemFont = 'Serif 11';
    is(windowUtils.systemFont, 'Serif 11');

    await waitForFrame();
    await waitForFrame();

    is(getComputedStyle(target).fontFamily, 'Serif');

    window.close();
    window.arguments[0].SimpleTest.finish();
  }
]]></script>
</window>