| felt_tests_thunderbird.py |
const url = arguments[0];
const mainWin = Services.wm.getMostRecentWindow("mail:3pane");
const tabmail = mainWin.document.getElementById("tabmail");
const oldShouldSwitchTo = tabmail.tabModes["contentTab"].shouldSwitchTo;
tabmail.tabModes["contentTab"].shouldSwitchTo = () => {
return -1;
};
tabmail.openTab("contentTab", { url });
tabmail.tabModes["contentTab"].shouldSwitchTo = oldShouldSwitchTo;
|
3430 |
- |
| manifest.toml |
|
294 |
- |
| test_felt_thunderbird_about_config_blocked.py |
|
2933 |
- |
| test_felt_thunderbird_enterprise_toolbar_button.py |
|
1007 |
- |
| test_felt_thunderbird_fxa.py |
return [
Services.prefs.getBoolPref("identity.fxaccounts.enabled"),
];
|
1771 |
- |
| test_felt_thunderbird_signout.py |
Sign out of the enterprise session from the Thunderbird main window.
Everything except the confirmation dialog is shared with the Firefox test:
BaseBrowserSignout.run_perform_signout() calls self._do_signout(), which
resolves to the override below because self is a Thunderbird instance.
|
4822 |
- |
| test_felt_thunderbird_starts.py |
const host = arguments[0];
const cookies = [];
for (const cookie of Services.cookies.getCookiesFromHost(host, {})) {
cookies.push({
name: cookie.name,
value: cookie.value,
host: cookie.host,
path: cookie.path,
});
}
return cookies;
|
1597 |
- |