gecko-dev/widget/tests/system_font_changes.xul
Kris Maglione 685d91c901 Bug 1553804: Part 6 - Fix chrome mochitests which open chrome windows with content openers. r=nika
Differential Revision: https://phabricator.services.mozilla.com/D45828

MANUAL PUSH: Cannot update reopened Phabricator revisions.

--HG--
extra : source : 86b3d469b4ff9f22e5757f83450b956a4c769785
extra : histedit_source : 2bf945343632b15eb79cf6b2ddd3ce097ddf70de%2Caec93d9f11bc1c802b63793cd5818530b64e9b4b
2019-09-20 10:18:15 -07:00

63 lines
1.7 KiB
XML

<?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);
});
}
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>