diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /gfx/tests/mochitest | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/tests/mochitest')
-rw-r--r-- | gfx/tests/mochitest/mochitest.ini | 9 | ||||
-rw-r--r-- | gfx/tests/mochitest/test_acceleration.html | 142 | ||||
-rw-r--r-- | gfx/tests/mochitest/test_bug509244.html | 45 | ||||
-rw-r--r-- | gfx/tests/mochitest/test_bug513439.html | 36 | ||||
-rw-r--r-- | gfx/tests/mochitest/test_font_whitelist.html | 90 |
5 files changed, 322 insertions, 0 deletions
diff --git a/gfx/tests/mochitest/mochitest.ini b/gfx/tests/mochitest/mochitest.ini new file mode 100644 index 0000000000..72725d3741 --- /dev/null +++ b/gfx/tests/mochitest/mochitest.ini @@ -0,0 +1,9 @@ +[DEFAULT] + +[test_acceleration.html] +skip-if = (os == 'win') # Bug 1430530 +subsuite = gpu +[test_bug509244.html] +[test_bug513439.html] +[test_font_whitelist.html] +skip-if = debug || asan # Race between pref service and gfx platform IPC causes frequent failures on debug/ASan diff --git a/gfx/tests/mochitest/test_acceleration.html b/gfx/tests/mochitest/test_acceleration.html new file mode 100644 index 0000000000..06a942e8cb --- /dev/null +++ b/gfx/tests/mochitest/test_acceleration.html @@ -0,0 +1,142 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=627498 +--> +<head> + <title>Test hardware acceleration</title> + <script src="/tests/SimpleTest/SimpleTest.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=627498">Mozilla Bug 627498</a> +<p id="display"></p> +<div id="content" style="display: none"> + +</div> +<pre id="test"> +<script type="application/javascript"> + +// Make sure that acceleration is enabled/disabled the way we expect it to be +// based on platform. + +SimpleTest.waitForExplicitFinish(); + +addEventListener("pageshow", runTest, false); + +function runTest() { + var Cc = SpecialPowers.Cc; + var Ci = SpecialPowers.Ci; + + var sysInfo = SpecialPowers.Services.sysinfo; + var xr = SpecialPowers.Services.appinfo; + + var windows = SpecialPowers.Services.ww.getWindowEnumerator(); + var windowutils; + var acceleratedWindows = 0; + var webrenderWindows = 0; + var layerManagerLog = []; + while (windows.hasMoreElements()) { + try { + windowutils = windows.getNext().windowUtils; + } catch (e) { + todo(false, "Bug X - don't expose BFCached pages through window enumerator"); + } + try { + var layerManager = windowutils.layerManagerType; + if (layerManager != "Basic" && layerManager != "WebRender (Software)") { + acceleratedWindows++; + } + if (layerManager.startsWith("WebRender")) { + webrenderWindows++; + } + layerManagerLog.push(layerManager); + } catch (e) { + // The window may not have a layer manager, in which case we get an error. + // Don't count it as an accelerated window. + dump("Didn't get a layer manager! " + e); + } + } + + var osName = sysInfo.getProperty("name"); + switch (osName) { + case "Darwin": // Mac OS X. + // We only enable OpenGL layers on machines that don't support QuickDraw + // plugins. x86-64 architecture is a good proxy for this plugin support. + if (sysInfo.getProperty("arch") != "x86-64") { + is(acceleratedWindows, 0, "Acceleration not supported on x86 OS X"); + } else { + // Workaround for SeaMonkey tinderboxes which don't support acceleration. + if (navigator.userAgent.match(/ SeaMonkey\//)) { + if (acceleratedWindows == 0) { + todo(false, "Acceleration not supported on x86-64 OS X" + + " (This is expected on SeaMonkey (tinderboxes).)"); + break; + } + } + + isnot(acceleratedWindows, 0, "Acceleration enabled on x86-64 OS X"); + } + break; + + case "Windows_NT": // Windows. + var version = parseFloat(sysInfo.getProperty("version")); + if (version == 5.0) { + is(acceleratedWindows, 0, "Acceleration not supported on Windows 2000"); + } else { + // Workaround for SeaMonkey tinderboxes which don't support acceleration. + if (navigator.userAgent.match(/ SeaMonkey\//)) { + if (acceleratedWindows == 0) { + todo(false, "Acceleration not supported on Windows XP or newer" + + " (This is expected on SeaMonkey (tinderboxes).)"); + break; + } + } + + isnot(acceleratedWindows, 0, "Acceleration enabled on Windows XP or newer"); + } + + var gfxInfo = Cc["@mozilla.org/gfx/info;1"].getService(Ci.nsIGfxInfo); + if (version < 6.2) { + ok(!gfxInfo.D2DEnabled, "Direct2D not supported on Windows 2008 or older"); + if (version < 6.1) { + ok(!gfxInfo.DWriteEnabled, "DirectWrite not supported on Windows 2008 or older"); + } else { + ok(gfxInfo.DWriteEnabled, "DirectWrite enabled on Windows 7 or newer"); + } + } else { + ok(gfxInfo.D2DEnabled, "Direct2D enabled on Windows 8 or newer"); + ok(gfxInfo.DWriteEnabled, "DirectWrite enabled on Windows 7 or newer"); + } + + var shouldGetWR = false; + try { + shouldGetWR = SpecialPowers.DOMWindowUtils.isWebRenderRequested; + } catch (e) {} + + if (shouldGetWR) { + isnot(webrenderWindows, 0, "WebRender enabled on Windows"); + } else { + is(webrenderWindows, 0, "WebRender disabled on Windows"); + } + break; + + case "Linux": + todo(false, "Acceleration supported on Linux, but only on taskcluster instances (bug 1296086)"); + break; + + default: + if (xr.OS == "Android") { + isnot(acceleratedWindows, 0, "Acceleration enabled on Android"); + } else { + is(acceleratedWindows, 0, "Acceleration not supported on '" + osName + "'"); + } + } + + SimpleTest.finish(); +} + +</script> +</pre> +</body> +</html> diff --git a/gfx/tests/mochitest/test_bug509244.html b/gfx/tests/mochitest/test_bug509244.html new file mode 100644 index 0000000000..de8753226d --- /dev/null +++ b/gfx/tests/mochitest/test_bug509244.html @@ -0,0 +1,45 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=509244 +--> +<head> + <title>Test for Bug 509244</title> + <script src="/tests/SimpleTest/SimpleTest.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=509244">Mozilla Bug 509244</a> +<p id="display">A</p> +<div id="content" style="display: none"> + +</div> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 509244 */ + +function flush() { document.documentElement.offsetHeight; } + +var text = document.getElementById("display"); + +// layout text, caching monospace font +text.style.fontFamily = "monospace"; +flush(); +// relayout text so that monospace font is no longer used (but cached) +text.style.fontFamily = "sans-serif"; +flush(); + +// flush cache +SpecialPowers.Services.obs.notifyObservers(null, "memory-pressure", "heap-minimize"); + +// reuse font that was flushed from cache +text.style.fontFamily = "monospace"; +flush(); + +ok(true, "not crashed"); + +</script> +</pre> +</body> +</html> diff --git a/gfx/tests/mochitest/test_bug513439.html b/gfx/tests/mochitest/test_bug513439.html new file mode 100644 index 0000000000..8034925bc3 --- /dev/null +++ b/gfx/tests/mochitest/test_bug513439.html @@ -0,0 +1,36 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=513439 +--> +<head> + <title>Test for Bug 513439</title> + <script src="/tests/SimpleTest/SimpleTest.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=513439">Mozilla Bug 513439</a> +<p id="display"></p> +<div id="content" style="display: none"> + +</div> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 513439 */ + +SimpleTest.waitForExplicitFinish(); + +SpecialPowers.pushPrefEnv({set: [["layout.css.devPixelsPerPx", "2"]]}, () => { + is(window.devicePixelRatio, 2, "devPixelsPerPx wasn't set correctly"); + + SpecialPowers.pushPrefEnv({set: [["layout.css.devPixelsPerPx", "1.5"]]}, () => { + is(window.devicePixelRatio, 1.5, "devPixelsPerPx wasn't set correctly"); + SimpleTest.finish(); + }); +}); + +</script> +</pre> +</body> +</html> diff --git a/gfx/tests/mochitest/test_font_whitelist.html b/gfx/tests/mochitest/test_font_whitelist.html new file mode 100644 index 0000000000..83d7e44967 --- /dev/null +++ b/gfx/tests/mochitest/test_font_whitelist.html @@ -0,0 +1,90 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=1121643 +--> +<head> + <title>Test for Bug 1121643</title> + <script src="/tests/SimpleTest/SimpleTest.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"> + +/** Test for Bug 1121643 */ + +const InspectorUtils = SpecialPowers.InspectorUtils; + +// 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); + } + } + } +}); + +</script> +</body> +</html> |