mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 18:00:31 +00:00
15 lines
508 B
Text
15 lines
508 B
Text
#import <CSS/FontFace.idl>
|
|
#import <DOM/Event.idl>
|
|
|
|
// 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;
|
|
};
|