Backed out changeset 2418bfee53f1 (bug 1932600) Backed out changeset 3297e990715a (bug 1932600) Backed out changeset 24a670dea977 (bug 1930292) Backed out changeset 7dd9f48216dd (bug 1930292) Backed out changeset 15a85ec739dd (bug 1930292)
24 lines
519 B
JavaScript
24 lines
519 B
JavaScript
/* 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/. */
|
|
|
|
/* import-globals-from ../head.js */
|
|
|
|
"use strict";
|
|
|
|
add_task(async function capture() {
|
|
if (!shouldCapture()) {
|
|
return;
|
|
}
|
|
|
|
let sets = [
|
|
"TabsInTitlebar",
|
|
"Tabs",
|
|
"WindowSize",
|
|
"Toolbars",
|
|
"LightweightThemes",
|
|
"UIDensities",
|
|
];
|
|
await TestRunner.start(sets, "primaryUI");
|
|
});
|