Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function test_policy_hardware_acceleration() {
let winUtils = Services.wm.getMostRecentWindow("").windowUtils;
let layerManager = winUtils.layerManagerType;
ok(
layerManager == "Basic" || layerManager == "WebRender (Software)",
"Hardware acceleration disabled"
);
});