blob: 63e18f802cce6621a3469cfae042c4f169bdf00f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test mozIDOMLocalization.ready rejected state</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
<link rel="localization" href="path/to_non_existing.ftl"/>
<script type="application/javascript">
"use strict";
SimpleTest.waitForExplicitFinish();
document.addEventListener("DOMContentLoaded", async function() {
/**
* 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.
*/
document.l10n.ready.then(() => {
is(1, 1, "the ready should resolve");
SimpleTest.finish();
});
});
</script>
</head>
<body>
<h1 data-l10n-id="non-existing-id"></h1>
</body>
</html>
|