summaryrefslogtreecommitdiff
path: root/test/data/parse2/INDEX
Commit message (Collapse)AuthorAgeFilesLines
* Add support for SVG fill-opacity propertyMichael Orlitzky2023-10-011-0/+1
| | | | | | | https://www.w3.org/TR/SVGTiny12/painting.html#FillOpacityProperty This property is unique to SVG documents, but is otherwise analogous to the usual CSS "opacity" property.
* Parse/MQ: reject forbidden media-type identifiersJohn-Mark Bell2022-05-241-0/+1
| | | | | | "and" / "not" / "only" / "or" are forbidden, so must be rejected Add tests for these scenarios
* tests: Add test for dodgy media blockDaniel Silverstone2019-12-011-0/+1
| | | | | | | To ensure we don't regress and fail on media blocks which end with selectors with no ruleset, add a test to that effect. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Tests: add tests for new length units.Lucas Neves2017-11-131-0/+1
|
* Tests: Add support and parsing tests for the flexbox properties.Lucas Neves2017-10-211-0/+1
|
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-011-1/+2
| | | | | | | | Now, overflow is a shorthand property setting both overflow-x and overflow-y. The getter for the computed overflow has been removed, and replaced with two for overflow-x and overflow-y.
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-281-1/+2
| | | | | | | | | | | | | | | | | | + break-after + break-before + break-inside + column-count + column-fill + column-gap + column-rule-color + column-rule-style + column_rule-width + column_span + column_width TODO: Shorthand properties (columns, column-rule) TODO: Selection svn path=/trunk/libcss/; revision=13412
* List property tests.Michael Drake2009-06-271-0/+1
| | | | svn path=/trunk/libcss/; revision=8071
* Font property tests.Michael Drake2009-06-271-0/+1
| | | | svn path=/trunk/libcss/; revision=8068
* Outline and border tests.Michael Drake2009-06-271-0/+2
| | | | svn path=/trunk/libcss/; revision=8063
* Comment out non-automated tests for now. Add some aural property tests.Michael Drake2009-06-271-0/+1
| | | | svn path=/trunk/libcss/; revision=8050
* Tests for padding property.Michael Drake2009-06-271-1/+2
| | | | svn path=/trunk/libcss/; revision=8044
* Tests for background property.Michael Drake2009-06-261-1/+2
| | | | svn path=/trunk/libcss/; revision=8028
* Tests for Margin shorthand prop. Comment out test that is currently expected ↵Michael Drake2009-06-261-0/+1
| | | | | | to fail. svn path=/trunk/libcss/; revision=8019
* Some tweaks to the background-position parser, which will theoretically make ↵John Mark Bell2009-06-181-0/+1
| | | | | | | | it do the right thing when invoked by shorthand property parser, say. Some more tests for illegal background-position values, to make sure I haven't screwed up. svn path=/trunk/libcss/; revision=7859
* Discard selectors that contain pseudo elements in non-terminal simple selectors.John Mark Bell2009-02-141-0/+1
| | | | | | More test data for selectors with pseudo elements svn path=/trunk/libcss/; revision=6473
* Test data for EOF in strange places.John Mark Bell2009-01-221-0/+1
| | | | | | Fix EOF handling in the core parser. svn path=/trunk/libcss/; revision=6164
* Tests for malformed declarations.Michael Drake2009-01-201-2/+6
| | | | svn path=/trunk/libcss/; revision=6154
* Another test harness for parser tests. This one compares the reserialised ↵John Mark Bell2009-01-191-0/+5
output, thus allowing us to sensibly test handling of invalid input and suchlike. Also, some rudimentary tests using this harness, and some documentation of the test data format. This doesn't use the dumping code from the library itself, as that's likely to disappear. svn path=/trunk/libcss/; revision=6144