frenic / csstype

Strict TypeScript and Flow types for style based on MDN data
MIT License
1.73k stars 72 forks source link

Missing css property: -webkit-text-decoration #72

Open MrJohz opened 5 years ago

MrJohz commented 5 years ago

According to MDN, text-decoration requires no browser prefixes except for when used with a shorthand property in Safari browsers, when it needs the -webkit- prefix.

From what I can tell, the current types don't allow for the -webkit- prefix for text-decoration.

frenic commented 5 years ago

That's right. The current generator is only "looking" in the text-decoration row and not the "Shorthand" row. This needs to be fixed. Thanks!