summaryrefslogtreecommitdiffstats
path: root/dom/l10n/DocumentL10n.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:29 +0000
commit59203c63bb777a3bacec32fb8830fba33540e809 (patch)
tree58298e711c0ff0575818c30485b44a2f21bf28a0 /dom/l10n/DocumentL10n.cpp
parentAdding upstream version 126.0.1. (diff)
downloadfirefox-59203c63bb777a3bacec32fb8830fba33540e809.tar.xz
firefox-59203c63bb777a3bacec32fb8830fba33540e809.zip
Adding upstream version 127.0.upstream/127.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/l10n/DocumentL10n.cpp')
-rw-r--r--dom/l10n/DocumentL10n.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/dom/l10n/DocumentL10n.cpp b/dom/l10n/DocumentL10n.cpp
index c53b3aa0c7..9cf1d96c39 100644
--- a/dom/l10n/DocumentL10n.cpp
+++ b/dom/l10n/DocumentL10n.cpp
@@ -93,8 +93,15 @@ class L10nReadyHandler final : public PromiseNativeHandler {
* rejection" warning, which is noisy and not-actionable.
*
* So instead, we just resolve and report errors.
+ *
+ * However, in automated tests we do reject so that errors with missing
+ * messages and resources can be caught.
*/
- mPromise->MaybeResolveWithUndefined();
+ if (xpc::IsInAutomation()) {
+ mPromise->MaybeRejectWithClone(aCx, aValue);
+ } else {
+ mPromise->MaybeResolveWithUndefined();
+ }
}
private: