diff options
Diffstat (limited to 'testing/web-platform/tests/interfaces/local-font-access.idl')
-rw-r--r-- | testing/web-platform/tests/interfaces/local-font-access.idl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/interfaces/local-font-access.idl b/testing/web-platform/tests/interfaces/local-font-access.idl new file mode 100644 index 0000000000..10e2e1f012 --- /dev/null +++ b/testing/web-platform/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; +}; |