Please go through the guide before working on this issue.
font-kerning is a keyword property which takes one of the following values: auto | normal | none. The default value is auto. The linked MDN has more information about this.
The constant prefix you should be using is NS_FONT_KERNING
You will need to manually implement the glue, see https://github.com/servo/servo/pull/13570/files for an example of this.
Code: servo/components/style/properties/longhand/font.mako.rs
- Use the example from the MDN page.
- Build stylo and screenshot how the example looks before your changes.
- Make your changes, build stylo and screenshot how it looks after.
- Open a PR with your changes and attach the screenshots
Please go through the guide before working on this issue.
font-kerningis a keyword property which takes one of the following values:auto | normal | none. The default value isauto. The linked MDN has more information about this.The constant prefix you should be using is
NS_FONT_KERNINGYou will need to manually implement the glue, see https://github.com/servo/servo/pull/13570/files for an example of this.
Code:
servo/components/style/properties/longhand/font.mako.rs