Skip to content

Commit

Permalink
Add mask-size property (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal authored Sep 17, 2021
1 parent 89ba81b commit c3c294f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/core/src/convert/toPolyfilledValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const toPolyfilledValue = {
content: (d) => ({ content: d.includes('"') || d.includes("'") || /^([A-Za-z]+\([^]*|[^]*-quote|inherit|initial|none|normal|revert|unset)$/.test(d) ? d : `"${d}"` }),
hyphens: (d) => ({ WebkitHyphens: d, hyphens: d }),
maskImage: (d) => ({ WebkitMaskImage: d, maskImage: d }),
maskSize: (d) => ({ WebkitMaskSize: d, maskSize: d }),
tabSize: (d) => ({ MozTabSize: d, tabSize: d }),
textSizeAdjust: (d) => ({ WebkitTextSizeAdjust: d, textSizeAdjust: d }),
userSelect: (d) => ({ WebkitUserSelect: d, userSelect: d }),
Expand Down

0 comments on commit c3c294f

Please sign in to comment.