-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support @font-feature-values
#837
Comments
For example, the declaration: https://drafts.csswg.org/css-fonts/#ex-serialize-same-font-feature-values /* Repeated declaration names, and multiple blocks of the same type*/
@font-feature-values foo {
@swash { pretty: 0; cool: 2; }
@swash { pretty: 1; }
} would be serialized as: /* Canonical serialization */
@font-feature-values foo {
@swash { cool: 2; pretty: 1; }
} |
Note that when compressing, we also need to handle special versions of Firefox that don't remove the ending semicolon. @font-feature-values FontName {
font-display: whatever;
} |
The text was updated successfully, but these errors were encountered: