Back to Content

WorkerGlobalScope: fonts property

files/en-us/web/api/workerglobalscope/fonts/index.md

latest850 B
Original Source

{{APIRef("DOM")}}{{AvailableInWorkers("worker")}}

The fonts property of the {{domxref("WorkerGlobalScope")}} interface returns the {{domxref("FontFaceSet")}} interface of the worker.

This property is part of the CSS Font Loading API.

Value

The returned value is the {{domxref("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

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("FontFaceSet")}} interface
  • {{domxref("FontFace")}}