- From: Chris Lilley via GitHub <sysbot+gh@w3.org>
- Date: Wed, 25 Aug 2021 12:18:53 +0000
- To: public-css-archive@w3.org
So, that would be
```css
/* 1. prefer COLRv1, then SVG-in-OpenType, then COLRv0 */
@font-face {
font-family: jewel;
src: url(boring.ttf) format("woff2");
}
@supports font-technology(color-COLRv0) {
@font-face {
font-family: jewel;
src: url(jewel-v0.woff2) format("woff2");
}
}
@supports font-technology(color-SVG) {
@font-face {
font-family: jewel;
src: url(jewel-svg.woff2) format("woff2");
}
}
@supports font-technology(color-COLRv1) {
@font-face {
font-family: jewel;
src: url(jewel-v1.woff2) format("woff2"),;
}
}
```
--
GitHub Notification of comment by svgeesus
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6520#issuecomment-905449760 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 25 August 2021 12:18:55 UTC