lexborisov / Modest

Modest is a fast HTML renderer implemented as a pure C99 library with no outside dependencies.
GNU Lesser General Public License v2.1
732 stars 65 forks source link

Add collation for border radius; #78

Open aygulsalahli opened 4 years ago

aygulsalahli commented 4 years ago

When parsing border radius with horizontal/vertical values, append missing values accordingly to the top-right, bottom-right and bottom-left when missing: For instance: border-radius:1px/2px 3px; should be parsed as border-radius: 1px 1px 1px 1px/ 2px 3px 2px 3px;