diff options
Diffstat (limited to '')
-rw-r--r-- | test/wpt/tests/interfaces/local-font-access.idl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/wpt/tests/interfaces/local-font-access.idl b/test/wpt/tests/interfaces/local-font-access.idl new file mode 100644 index 0000000..10e2e1f --- /dev/null +++ b/test/wpt/tests/interfaces/local-font-access.idl @@ -0,0 +1,24 @@ +// GENERATED CONTENT - DO NOT EDIT +// Content was automatically extracted by Reffy into webref +// (https://github.com/w3c/webref) +// Source: Local Font Access API (https://wicg.github.io/local-font-access/) + +[SecureContext] +partial interface Window { + Promise<sequence<FontData>> queryLocalFonts(optional QueryOptions options = {}); +}; + +dictionary QueryOptions { + sequence<DOMString> postscriptNames; +}; + +[Exposed=Window] +interface FontData { + Promise<Blob> blob(); + + // Names + readonly attribute USVString postscriptName; + readonly attribute USVString fullName; + readonly attribute USVString family; + readonly attribute USVString style; +}; |