summaryrefslogtreecommitdiff
path: root/tests/Hakyll/Web/CompressCss
AgeCommit message (Collapse)AuthorFilesLines
2018-03-07Optimise CSS compressionBergi1-9/+9
2017-12-18Fix warnings and errorsJasper Van der Jeugt1-2/+1
2017-11-17Fix compression of calc() in CSSKrzysztof Jurewicz1-0/+2
According to Mozilla Developer Network, “The + and - operators must always be surrounded by whitespace.”.
2017-06-10Some small CSS compression improvementsNicole Rauch1-3/+7
* We now also compress whitespace around commas. * Remove whitespace around some other operators as well. * Clarified the code around the separator compression and even improved the code (one case slipped through unnoticed).
2016-10-17Move from test-framework to tastyJasper Van der Jeugt1-6/+6
2016-08-15Also trim whitespace around colons.Nicole Rauch1-0/+2
2016-08-14Do not strip comments that are inside constants.Nicole Rauch1-1/+4
2016-08-14We must avoid the compression of whitespace in constants by handling it in ↵Nicole Rauch1-1/+6
the same way.
2016-08-14Improved the compaction a bit more.Nicole Rauch1-0/+2
2016-08-14Compacted the tests and made them more readable.Nicole Rauch1-22/+11
2016-08-14We need to constantly check whether we are at the start of a constant, not ↵Nicole Rauch1-4/+6
just once.
2016-08-14Adding tests that make sure that whitespace at the start or end of constants ↵Nicole Rauch1-0/+5
does not get eaten.
2016-08-14Adding tests that make sure that the constant terminators don't get mixed up.Nicole Rauch1-0/+5
2016-08-14Whitespace in certain kinds of string constants is no longer eliminated.Nicole Rauch1-0/+3
2016-08-14Added some unit tests for CompressCssNicole Rauch1-0/+43