radkovo / jStyleParser

jStyleParser is a CSS parser written in Java. It has its own application interface that is designed to allow an efficient CSS processing in Java and mapping the values to the Java data types. It parses CSS 2.1 style sheets into structures that can be efficiently assigned to DOM elements. It is intended be the primary CSS parser for the CSSBox library. While handling errors, it is user agent conforming according to the CSS specification.
http://cssbox.sourceforge.net/jstyleparser/
GNU Lesser General Public License v3.0
92 stars 49 forks source link

Test for linear gradients #89

Closed Mangara closed 6 years ago

Mangara commented 6 years ago

Contains a test for issue #88. Sorry for the extraneous commits, I'm not sure how to get rid of them nicely. Bumping the version of surefire-junit47 is almost certainly a good idea, though.

hrj commented 6 years ago

I'm not sure how to get rid of them nicely.

You can squash, remove and reorder commits with the help of git rebase -i. Very useful command to keep in one's kitty.

Not sure it's worth the trouble for this PR though.

radkovo commented 6 years ago

GitHub provides the Squash&Merge functionality directly so I have given it a try.

Mangara commented 6 years ago

You can squash, remove and reorder commits with the help of git rebase -i. Very useful command to keep in one's kitty.

Thanks! That's very useful indeed.