From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../dom_localization/test_attr_sanitized.html | 49 ++++++++ .../dom_localization/test_connectRoot.html | 45 ++++++++ .../test_connectRoot_webcomponent.html | 72 ++++++++++++ .../dom_localization/test_disconnectRoot.html | 60 ++++++++++ .../mochitest/dom_localization/test_domloc.xhtml | 68 +++++++++++ .../dom_localization/test_getAttributes.html | 49 ++++++++ .../mochitest/dom_localization/test_l10n_args.html | 128 +++++++++++++++++++++ .../dom_localization/test_l10n_mutations.html | 57 +++++++++ .../mochitest/dom_localization/test_overlay.html | 60 ++++++++++ .../dom_localization/test_overlay_missing_all.html | 37 ++++++ .../test_overlay_missing_children.html | 53 +++++++++ .../dom_localization/test_overlay_repeated.html | 50 ++++++++ .../dom_localization/test_overlay_sanitized.html | 52 +++++++++ .../dom_localization/test_repeated_l10nid.html | 60 ++++++++++ .../dom_localization/test_setAttributes.html | 79 +++++++++++++ .../dom_localization/test_translateElements.html | 47 ++++++++ .../dom_localization/test_translateFragment.html | 48 ++++++++ .../dom_localization/test_translateRoots.html | 56 +++++++++ 18 files changed, 1070 insertions(+) create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_attr_sanitized.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_connectRoot.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_connectRoot_webcomponent.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_disconnectRoot.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_domloc.xhtml create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_getAttributes.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_l10n_args.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_l10n_mutations.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_overlay.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_all.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_children.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_overlay_repeated.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_overlay_sanitized.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_repeated_l10nid.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_setAttributes.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_translateElements.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_translateFragment.html create mode 100644 dom/l10n/tests/mochitest/dom_localization/test_translateRoots.html (limited to 'dom/l10n/tests/mochitest/dom_localization') diff --git a/dom/l10n/tests/mochitest/dom_localization/test_attr_sanitized.html b/dom/l10n/tests/mochitest/dom_localization/test_attr_sanitized.html new file mode 100644 index 0000000000..a9244c9891 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_attr_sanitized.html @@ -0,0 +1,49 @@ + + + + + Test DOMLocalization's attr sanitization functionality + + + + + +

+

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_connectRoot.html b/dom/l10n/tests/mochitest/dom_localization/test_connectRoot.html new file mode 100644 index 0000000000..83b83757f1 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_connectRoot.html @@ -0,0 +1,45 @@ + + + + + Test DOMLocalization.prototype.connectRoot + + + + + +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_connectRoot_webcomponent.html b/dom/l10n/tests/mochitest/dom_localization/test_connectRoot_webcomponent.html new file mode 100644 index 0000000000..1254bd814f --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_connectRoot_webcomponent.html @@ -0,0 +1,72 @@ + + + + + Test DOMLocalization.prototype.connectRoot with Web Components + + + + + + + + + + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_disconnectRoot.html b/dom/l10n/tests/mochitest/dom_localization/test_disconnectRoot.html new file mode 100644 index 0000000000..fd7344c88e --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_disconnectRoot.html @@ -0,0 +1,60 @@ + + + + + Test DOMLocalization.prototype.disconnectRoot + + + + + +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_domloc.xhtml b/dom/l10n/tests/mochitest/dom_localization/test_domloc.xhtml new file mode 100644 index 0000000000..a4d4fcc506 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_domloc.xhtml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_getAttributes.html b/dom/l10n/tests/mochitest/dom_localization/test_getAttributes.html new file mode 100644 index 0000000000..11996d132a --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_getAttributes.html @@ -0,0 +1,49 @@ + + + + + Test DOMLocalization.prototype.getAttributes + + + + + +

+

+

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_l10n_args.html b/dom/l10n/tests/mochitest/dom_localization/test_l10n_args.html new file mode 100644 index 0000000000..4078d32f9e --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_l10n_args.html @@ -0,0 +1,128 @@ + + + + + Test DOMLocalization's data-l10n-args handling + + + + + +

+
+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_l10n_mutations.html b/dom/l10n/tests/mochitest/dom_localization/test_l10n_mutations.html new file mode 100644 index 0000000000..278baa15dd --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_l10n_mutations.html @@ -0,0 +1,57 @@ + + + + + Test DOMLocalization's MutationObserver + + + + + +
+

+
+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_overlay.html b/dom/l10n/tests/mochitest/dom_localization/test_overlay.html new file mode 100644 index 0000000000..2c8c219bb2 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_overlay.html @@ -0,0 +1,60 @@ + + + + + Test DOMLocalization's DOMOverlay functionality + + + + + +

+

+ +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_all.html b/dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_all.html new file mode 100644 index 0000000000..c6f285aa38 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_all.html @@ -0,0 +1,37 @@ + + + + + Test DOMLocalization's DOMOverlay functionality + + + + + +

+ + + +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_children.html b/dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_children.html new file mode 100644 index 0000000000..9e4fec1ce2 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_overlay_missing_children.html @@ -0,0 +1,53 @@ + + + + + Test DOMLocalization's DOMOverlay functionality + + + + + +

+ + + +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_overlay_repeated.html b/dom/l10n/tests/mochitest/dom_localization/test_overlay_repeated.html new file mode 100644 index 0000000000..a169c27fa0 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_overlay_repeated.html @@ -0,0 +1,50 @@ + + + + + Test DOMLocalization's DOMOverlay functionality + + + + + +

+ + +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_overlay_sanitized.html b/dom/l10n/tests/mochitest/dom_localization/test_overlay_sanitized.html new file mode 100644 index 0000000000..fcc201edb6 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_overlay_sanitized.html @@ -0,0 +1,52 @@ + + + + + Test DOMLocalization's DOMOverlay functionality + + + + + + + + + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_repeated_l10nid.html b/dom/l10n/tests/mochitest/dom_localization/test_repeated_l10nid.html new file mode 100644 index 0000000000..64d585f0a0 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_repeated_l10nid.html @@ -0,0 +1,60 @@ + + + + + Test DOMLocalization's matching l10nIds functionality + + + + + +

+

+ +

+ +

+ +

+ +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_setAttributes.html b/dom/l10n/tests/mochitest/dom_localization/test_setAttributes.html new file mode 100644 index 0000000000..508a15dcd3 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_setAttributes.html @@ -0,0 +1,79 @@ + + + + + Test DOMLocalization.prototype.setAttributes and DOMLocalization.prototype.setArgs + + + + + +

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_translateElements.html b/dom/l10n/tests/mochitest/dom_localization/test_translateElements.html new file mode 100644 index 0000000000..7893309ce4 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_translateElements.html @@ -0,0 +1,47 @@ + + + + + Test DOMLocalization.prototype.translateElements + + + + + +

+ + + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_translateFragment.html b/dom/l10n/tests/mochitest/dom_localization/test_translateFragment.html new file mode 100644 index 0000000000..c5ccfd996a --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_translateFragment.html @@ -0,0 +1,48 @@ + + + + + Test DOMLocalization.prototype.translateFragment + + + + + +

+

+

+

+ + diff --git a/dom/l10n/tests/mochitest/dom_localization/test_translateRoots.html b/dom/l10n/tests/mochitest/dom_localization/test_translateRoots.html new file mode 100644 index 0000000000..58bfb044b0 --- /dev/null +++ b/dom/l10n/tests/mochitest/dom_localization/test_translateRoots.html @@ -0,0 +1,56 @@ + + + + + Test DOMLocalization.prototype.translateRoots + + + + + +
+

+
+
+

+
+ + -- cgit v1.2.3