37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* This file will be replaced by Fluent but it's a middle ground so we can share
|
|
* the edit dialog code with the unprivileged PaymentRequest dialog before the
|
|
* Fluent conversion
|
|
*/
|
|
|
|
ChromeUtils.import("resource://formautofill/FormAutofillUtils.jsm");
|
|
|
|
const L10N_ATTRIBUTES = ["data-localization", "data-localization-region"];
|
|
|
|
let mutationObserver = new MutationObserver(function onMutation(mutations) {
|
|
for (let mutation of mutations) {
|
|
if (!mutation.target.hasAttribute(mutation.attributeName)) {
|
|
// The attribute was removed in the meantime.
|
|
continue;
|
|
}
|
|
FormAutofillUtils.localizeAttributeForElement(mutation.target, mutation.attributeName);
|
|
}
|
|
});
|
|
|
|
document.addEventListener("DOMContentLoaded", function onDCL() {
|
|
FormAutofillUtils.localizeMarkup(document);
|
|
mutationObserver.observe(document, {
|
|
attributes: true,
|
|
attributeFilter: L10N_ATTRIBUTES,
|
|
subtree: true,
|
|
});
|
|
}, {
|
|
once: true,
|
|
});
|