This patch was autogenerated by my decomponents.py
It covers almost every file with the extension js, jsm, html, py,
xhtml, or xul.
It removes blank lines after removed lines, when the removed lines are
preceded by either blank lines or the start of a new block. The "start
of a new block" is defined fairly hackily: either the line starts with
//, ends with */, ends with {, <![CDATA[, """ or '''. The first two
cover comments, the third one covers JS, the fourth covers JS embedded
in XUL, and the final two cover JS embedded in Python. This also
applies if the removed line was the first line of the file.
It covers the pattern matching cases like "var {classes: Cc,
interfaces: Ci, utils: Cu, results: Cr} = Components;". It'll remove
the entire thing if they are all either Ci, Cr, Cc or Cu, or it will
remove the appropriate ones and leave the residue behind. If there's
only one behind, then it will turn it into a normal, non-pattern
matching variable definition. (For instance, "const { classes: Cc,
Constructor: CC, interfaces: Ci, utils: Cu } = Components" becomes
"const CC = Components.Constructor".)
MozReview-Commit-ID: DeSHcClQ7cG
52 lines
2.0 KiB
JavaScript
52 lines
2.0 KiB
JavaScript
"use strict";
|
|
|
|
var gTestTab;
|
|
var gContentAPI;
|
|
var gContentWindow;
|
|
|
|
add_task(setup_UITourTest);
|
|
|
|
add_UITour_task(async function test_openPreferences() {
|
|
let promiseTabOpened = BrowserTestUtils.waitForNewTab(gBrowser, "about:preferences");
|
|
await gContentAPI.openPreferences();
|
|
let tab = await promiseTabOpened;
|
|
await BrowserTestUtils.removeTab(tab);
|
|
});
|
|
|
|
add_UITour_task(async function test_openInvalidPreferences() {
|
|
await gContentAPI.openPreferences(999);
|
|
|
|
try {
|
|
await waitForConditionPromise(() => {
|
|
return gBrowser.selectedBrowser.currentURI.spec.startsWith("about:preferences");
|
|
}, "Check if about:preferences opened");
|
|
ok(false, "No about:preferences tab should have opened");
|
|
} catch (ex) {
|
|
ok(true, "No about:preferences tab opened: " + ex);
|
|
}
|
|
});
|
|
|
|
add_UITour_task(async function test_openPrivacyPreferences() {
|
|
let promiseTabOpened = BrowserTestUtils.waitForNewTab(gBrowser, "about:preferences#privacy");
|
|
await gContentAPI.openPreferences("privacy");
|
|
let tab = await promiseTabOpened;
|
|
await BrowserTestUtils.removeTab(tab);
|
|
});
|
|
|
|
add_UITour_task(async function test_openPrivacyReports() {
|
|
if (!AppConstants.MOZ_TELEMETRY_REPORTING &&
|
|
!(AppConstants.MOZ_DATA_REPORTING && AppConstants.MOZ_CRASHREPORTER)) {
|
|
return;
|
|
}
|
|
let promiseTabOpened = BrowserTestUtils.waitForNewTab(gBrowser, "about:preferences#privacy-reports");
|
|
await gContentAPI.openPreferences("privacy-reports");
|
|
let tab = await promiseTabOpened;
|
|
await BrowserTestUtils.waitForEvent(gBrowser.selectedBrowser, "Initialized");
|
|
let doc = gBrowser.selectedBrowser.contentDocument;
|
|
is(doc.location.hash, "#privacy", "Should not display the reports subcategory in the location hash.");
|
|
await TestUtils.waitForCondition(() => doc.querySelector(".spotlight"),
|
|
"Wait for the reports section is spotlighted.");
|
|
is(doc.querySelector(".spotlight").getAttribute("data-subcategory"), "reports", "The reports section is spotlighted.");
|
|
await BrowserTestUtils.removeTab(tab);
|
|
});
|