This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/toolkit/mozapps/extensions/internal/AddonRepository.sys.mjs b/toolkit/mozapps/extensions/internal/AddonRepository.sys.mjs | |
index 8d4d178924eba..cceed36adf210 100644 | |
--- a/toolkit/mozapps/extensions/internal/AddonRepository.sys.mjs | |
+++ b/toolkit/mozapps/extensions/internal/AddonRepository.sys.mjs | |
@@ -3,6 +3,7 @@ | |
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs"; | |
+import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Cal Merge for Google Calendar™ (by @HCAWN forked from @imightbeAmy, and then forked again by @andrewmacheret) | |
// @namespace gcal-multical-event-merge | |
// @include https://www.google.com/calendar/* | |
// @include http://www.google.com/calendar/* | |
// @include https://calendar.google.com/* | |
// @include http://calendar.google.com/* | |
// @require https://cdn.jsdelivr.net/gh/gka/chroma.js/chroma-light.min.js | |
// @version 1 | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/accessible/tests/mochitest/events/test_focus_controls.html b/accessible/tests/mochitest/events/test_focus_controls.html | |
index 268ec5d0e46b7..0760082ad94b3 100644 | |
--- a/accessible/tests/mochitest/events/test_focus_controls.html | |
+++ b/accessible/tests/mochitest/events/test_focus_controls.html | |
@@ -31,7 +31,17 @@ | |
gQueue.push(new synthFocus("button2")); | |
gQueue.push(new synthFocus("checkbox")); | |
gQueue.push(new synthFocus("radio1")); | |
+ // Only the checked radio button is tabbable. If there's no checked radio | |
+ // button (as in this case), only the first radio button is tabbable. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/browser/components/newtab/lib/ASRouter.jsm | |
+++ b/browser/components/newtab/lib/ASRouter.jsm | |
@@ -98,7 +98,7 @@ const JEXL_PROVIDER_CACHE = new Set(["snippets"]); | |
// To observe the app locale change notification. | |
const TOPIC_INTL_LOCALE_CHANGED = "intl:app-locales-changed"; | |
-const TOPIC_EXPERIMENT_FORCE_ENROLLED = "nimbus:force-enroll"; | |
+const NIMBUS_TOPICS = ["nimbus:enroll", "nimbus:unenroll"]; | |
// To observe the pref that controls if ASRouter should use the remote Fluent files for l10n. | |
const USE_REMOTE_L10N_PREF = |