Source code

Revision control

Copy as Markdown

Other Tools

<script>
'use strict';
window.onload = function() {
self.queryLocalFonts().then(() => {
parent.postMessage({ type: 'availability-result', enabled: true }, '*');
}, error => {
parent.postMessage({ type: 'availability-result', enabled: false }, '*');
});
}
</script>