Re: [csswg-drafts] [css-font-loading] [info discovery] Named instances should be discoverable too (#6599)

I guess we could start with

```
interface FontFaceNamedInstance {
    readonly attribute DOMString name;
    /* Maybe more here in the future. For now, just the name. */
};

interface FontFaceNamedInstances {
    readonly setlike<FontFaceNamedInstance>;
};

partial interface FontFace {
  readonly attribute FontFaceNamedInstances namedInstances;
};
```

If the strings are localized (I think they are but I'm not sure), we'd have to deal with https://github.com/w3c/csswg-drafts/issues/6595 as well.

-- 
GitHub Notification of comment by litherum
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6599#issuecomment-917187311 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Friday, 10 September 2021 20:20:41 UTC