summaryrefslogtreecommitdiff
path: root/test/data/select
Commit message (Collapse)AuthorAgeFilesLines
* Fix selection testsJohn Mark Bell2011-03-121-12/+370
| | | | svn path=/trunk/libcss/; revision=12000
* Add support for opacity propertyJohn Mark Bell2011-01-291-0/+22
| | | | svn path=/trunk/libcss/; revision=11527
* Centralise handling of transparent colours.John Mark Bell2011-01-291-89/+173
| | | | | | Add support for currentColor svn path=/trunk/libcss/; revision=11525
* Add a few more selection tests.Michael Drake2011-01-201-156/+632
| | | | svn path=/trunk/libcss/; revision=11426
* Add a few more selection tests.Michael Drake2011-01-191-0/+508
| | | | svn path=/trunk/libcss/; revision=11387
* Slightly more selection test coverage.Michael Drake2010-12-301-0/+76
| | | | svn path=/trunk/libcss/; revision=11173
* Fix testsuite in light of change to colour representationJohn Mark Bell2010-12-041-18/+18
| | | | svn path=/trunk/libcss/; revision=10987
* It turns out that using magic values for text-align is simpler than having ↵John Mark Bell2009-08-221-3/+0
| | | | | | an entirely new property for html alignment. svn path=/trunk/libcss/; revision=9387
* -libcss-alignJohn Mark Bell2009-08-211-0/+3
| | | | svn path=/trunk/libcss/; revision=9378
* Regression test for quotes bytecode execution in cascade_quotes.John Mark Bell2009-07-301-0/+85
| | | | svn path=/trunk/libcss/; revision=8913
* Provide accessor for computed value of display assuming static position.John Mark Bell2009-07-151-1/+1
| | | | | | Modify css_computed_display to follow $9.7. svn path=/trunk/libcss/; revision=8568
* Compute absolute values for all length properties.John Mark Bell2009-07-041-25/+25
| | | | | | | Make initial border-*-color match the computed color. Compute correct value of display/float wrt position. svn path=/trunk/libcss/; revision=8317
* Move quotes property into common style block.John Mark Bell2009-07-041-4/+0
| | | | svn path=/trunk/libcss/; revision=8307
* Query client for initial values of color, font-family, quotes, and ↵John Mark Bell2009-07-041-8/+8
| | | | | | voice-family properties. svn path=/trunk/libcss/; revision=8306
* Fix test data:John Mark Bell2009-06-301-6/+24
| | | | | | | Test 4 is testing the root node, so needs to compare against a fully computed style. The paragraph node in test 5 is the first child of its parent, so the background colour is expected to be as specified. svn path=/trunk/libcss/; revision=8210
* Update testdata.Michael Drake2009-06-301-0/+1
| | | | svn path=/trunk/libcss/; revision=8200
* More test data changes.Michael Drake2009-06-301-4/+23
| | | | svn path=/trunk/libcss/; revision=8188
* Fix tests.Michael Drake2009-06-301-27/+25
| | | | svn path=/trunk/libcss/; revision=8186
* Fix tests.Michael Drake2009-06-301-0/+12
| | | | svn path=/trunk/libcss/; revision=8183
* Delete unset color and border color because they'll be inherit.Michael Drake2009-06-301-15/+0
| | | | svn path=/trunk/libcss/; revision=8182
* Fix test.Michael Drake2009-06-301-5/+5
| | | | svn path=/trunk/libcss/; revision=8181
* Enable selector tests. Update tests.Michael Drake2009-06-301-19/+232
| | | | svn path=/trunk/libcss/; revision=8180
* Test + selector.Michael Drake2009-02-141-0/+82
| | | | svn path=/trunk/libcss/; revision=6506
* Update expected data.Michael Drake2009-02-141-0/+48
| | | | svn path=/trunk/libcss/; revision=6499
* Pseudo classes are now matched by callbacks to the client. This is far ↵John Mark Bell2009-02-141-2/+2
| | | | | | | | | saner, as any node may match a pseudo class, not just the immediate target of the selection. Munge test data to no longer expect :active to match -- there's currently no way to specify which node(s) in the tree have which pseudo classes applying to them. The pseudo classes on @page are no longer supported (namely, :left, :right, :first). These, and @page itself, probably want a dedicated API, as they are nothing to do with normal selection. Probably something like css_error css_select_page_margins(ctx, CSS_PAGE_LEFT, &computed); svn path=/trunk/libcss/; revision=6476
* Handle :first-child within libcssJohn Mark Bell2009-02-141-0/+18
| | | | svn path=/trunk/libcss/; revision=6474
* A motley selection of changes. Vague summary:John Mark Bell2009-02-141-0/+27
| | | | | | | | | | | | | | | | | | + Add config makefile (not that there's anything to configure at present :) + Fix dumping of UNIT_MS to actually use sprintf and not printf + Extend computed style dumping (still loads of properties missing) + Make result buffer larger in select-auto.c -- avoids buffer overflows when there's way more output than expected + Expand expected test output to contain defaulted properties (more of this will be needed once the computed style dumping is complete) + Store interned string pointers in css_select_state. + Intern pseudo class/element names at start of selecting styles for a sheet + Group properties so we know which ones appear in the extension blocks + Fixup unset properties once the cascade has completed + Implement matching of pseudo class/element selectors + Fix setting of background-image and list-style-image when there's no URL. svn path=/trunk/libcss/; revision=6470
* Beginnings of a computed style dump routine.John Mark Bell2009-02-131-5/+4
| | | | | | | It probably helps to process the stylesheets individually, rather than parsing them all into one sheet. Fix test data somewhat. svn path=/trunk/libcss/; revision=6468
* Sketch out some test data for the selection engineJohn Mark Bell2009-02-122-0/+45
svn path=/trunk/libcss/; revision=6452