mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-12 14:37:50 +00:00
16 lines
352 B
HTML
16 lines
352 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Langpack Test : getAdditionalLanguages()</title>
|
|
<script>
|
|
function run() {
|
|
navigator.mozApps.getAdditionalLanguages().then(languages => {
|
|
alert(JSON.stringify(languages));
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="run()">
|
|
<h1>Langpack Test : getAdditionalLanguages()</h1>
|
|
</body>
|
|
</html> |