WorkerGlobalScope: fonts property
Note: This feature is only available in Web Workers.
The fonts
property of the WorkerGlobalScope
interface returns the FontFaceSet
interface of the worker.
This property is part of the CSS Font Loading API.
Value
The returned value is the FontFaceSet
interface of the worker.
The FontFaceSet
interface is useful for loading new fonts, checking the status of previously loaded fonts etc.
Examples
Doing operation after all fonts are loaded
js
fonts.ready.then(() => {
// Any operation that needs to be done only after all the fonts
// have finished loading can go here.
});
Specifications
Specification |
---|
CSS Font Loading Module Level 3 # dom-fontfacesource-fonts |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
fonts |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
See also
FontFaceSet
interfaceFontFace