Steve Harrison
Steve Harrison
**Note:** I originally [raised this issue in the Cypress repository](https://github.com/cypress-io/cypress/issues/7887), but they think that it is an issue with `cypress-image-snapshot` instead. ### Current behavior: When I run `npx cypress run...
The following CSS: ``` font-variant:normal; font-feature-settings: "smcp" on; ``` produces: ``` font-feature-settings:"smcp" on,normal;font-variant:normal ``` The resulting CSS rule is invalid according to Chrome DevTools: `font-feature-settings:"smcp" on,normal`. Additionally: ``` font-variant: none;...
I find it confusing that this plugin modifies the `font-feature-settings` CSS property; I was originally trying to set both `font-variant` and `font-feature-settings` to `none` and `normal` respectively, and then noticed...
I can't see any mention of kerning on https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant: would it be more accurate to set `font-feature-settings` to `normal` instead? I've done a fix locally (just adding `none: "normal"` to...