The FontFace
interface represents a single usable font face. It allows control of the source of the font face, being a URL to an external resource, or a buffer; it also allows control of when the font face is loaded and its current status.
Documentation FontFace by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
Constructor
new(family:String, source:String, ?descriptors:Null<FontFaceDescriptors>)
new(family:String, source:ArrayBuffer, ?descriptors:Null<FontFaceDescriptors>)
new(family:String, source:ArrayBufferView, ?descriptors:Null<FontFaceDescriptors>)
Throws:
null | DOMError |
---|
Variables
family:String
Is a CSSOMString
that contains the family of the font. It is equivalent to the @font-face/font-family
descriptor.
featureSettings:String
Is a CSSOMString
that contains the features of the font. It is equivalent to the @font-face/font-feature-settings
descriptor.
read onlystatus:FontFaceLoadStatus
Returns an enumerated value indicating the status of the font. It can be one of the following: "unloaded"
, "loading"
, "loaded"
, or "error"
.
stretch:String
Is a CSSOMString
that contains how the font stretches. It is equivalent to the @font-face/font-stretch
descriptor.
style:String
Is a CSSOMString
that contains the style of the font. It is equivalent to the @font-face/font-style
descriptor.
unicodeRange:String
Is a CSSOMString
that contains the range of code encompassed the font. It is equivalent to the @font-face/unicode-range
descriptor.