summaryrefslogtreecommitdiffstats
path: root/dom/l10n
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
commita90a5cba08fdf6c0ceb95101c275108a152a3aed (patch)
tree532507288f3defd7f4dcf1af49698bcb76034855 /dom/l10n
parentAdding debian version 126.0.1-1. (diff)
downloadfirefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.tar.xz
firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/l10n')
-rw-r--r--dom/l10n/DocumentL10n.cpp9
-rw-r--r--dom/l10n/tests/mochitest/document_l10n/test_docl10n_ready_rejected.html11
2 files changed, 16 insertions, 4 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:
diff --git a/dom/l10n/tests/mochitest/document_l10n/test_docl10n_ready_rejected.html b/dom/l10n/tests/mochitest/document_l10n/test_docl10n_ready_rejected.html
index 63e18f802c..a80a4b6d94 100644
--- a/dom/l10n/tests/mochitest/document_l10n/test_docl10n_ready_rejected.html
+++ b/dom/l10n/tests/mochitest/document_l10n/test_docl10n_ready_rejected.html
@@ -12,12 +12,17 @@
document.addEventListener("DOMContentLoaded", async function() {
/**
- * Even when we fail to localize all elements, we will
- * still resolve the `ready` promise to communicate that
+ * Outside of tests, even when we fail to localize all elements,
+ * we will still resolve the `ready` promise to communicate that
* the initial translation phase is now completed.
+ *
+ * In tests, the promise will be rejected to allow errors to be caught.
*/
document.l10n.ready.then(() => {
- is(1, 1, "the ready should resolve");
+ is(1, 2, "the ready should not resolve");
+ SimpleTest.finish();
+ }, (_err) => {
+ is(1, 1, "the ready should reject");
SimpleTest.finish();
});
});