FontFaceSet

package js.html

extends EventTarget

Available on js

The FontFaceSet interface of the CSS Font Loading API manages the loading of font-faces and querying of their download status.

Documentation FontFaceSet by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See also:

Variables

onloading:Function

An EventListener called whenever an event of type loading is fired, indicating a font-face set has started loading.

onloadingdone:Function

An EventListener called whenever an event of type loadingdone is fired, indicating that a font face set has finished loading.

onloadingerror:Function

An EventListener called whenever an event of type loadingerror is fired, indicating that an error occurred whilst loading a font-face set.

read onlyready:Promise<Void>

read onlysize:Int

read onlystatus:FontFaceSetLoadStatus

Indicates the font-face's loading status. It will be one of 'loading' or 'loaded'.

Methods

add(font:FontFace):Void

Throws:

null

DOMError

check(font:String, text:String = " "):Bool

Throws:

null

DOMError

clear():Void

delete(font:FontFace):Bool

entries():FontFaceSetIterator

forEach(cb:(FontFace, FontFace, FontFaceSet) ‑> Void, ?thisArg:Dynamic):Void

Throws:

null

DOMError

has(font:FontFace):Bool

load(font:String, text:String = " "):Promise<Array<FontFace>>

values():FontFaceSetIterator

© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/html/FontFaceSet.html