ladybird/Libraries/LibWeb/CSS/FontFaceSetLoadEvent.idl

13 lines
456 B
Text
Raw Normal View History

2026-01-05 14:18:29 -03:00
// https://drafts.csswg.org/css-font-loading/#fontfacesetloadevent
dictionary FontFaceSetLoadEventInit : EventInit {
sequence<FontFace> fontfaces = [];
};
// https://drafts.csswg.org/css-font-loading/#fontfacesetloadevent
[Exposed=(Window,Worker)]
interface FontFaceSetLoadEvent : Event {
constructor(CSSOMString type, optional FontFaceSetLoadEventInit eventInitDict = {});
[SameObject] readonly attribute FrozenArray<FontFace> fontfaces;
};