Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/l10n/tests/mochitest/chrome.toml
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test DOMLocalization's DOMOverlay functionality</title>
<script type="application/javascript">
"use strict";
const l10nReg = new L10nRegistry();
SimpleTest.waitForExplicitFinish();
addLoadEvent(async () => {
const domLoc = new DOMLocalization(
[],
false,
l10nReg,
["en-US"],
);
await domLoc.translateFragment(document.body).then(() => {
ok(false, "Expected translateFragment to throw on missing l10n-id");
}, () => {
ok(true, "Expected translateFragment to throw on missing l10n-id");
});
SimpleTest.finish();
});
</script>
</head>
<body>
<p data-l10n-id="title">
</p>
</body>
</html>