about summary refs log tree commit diff stats
path: root/test/layout/nth-child.color.expected
Commit message (Collapse)AuthorAgeFilesLines
* cssparser: ignore case in AnB parsing of odd/evenbptato2025-04-021-2/+2
|
* render, pager: fix canvas background painting orderbptato2025-02-191-1/+1
| | | | | | | | | | We were painting the background box in render for dump mode, but this conflicted with the standard requirement that the canvas be painted before other elements. So now we handle this directly in the pager. Conveniently enough, this also fixes the issue of canvas color adding pointless spacing to pages (which often made the selection feature less useful.)
* render: actually fix the "extra unnecessary line" bugbptato2025-01-211-1/+0
| | | | Plus remove addLines, it's no longer very useful.
* dom, match: optimize :nth-child, :nth-last-childbptato2024-12-171-0/+31
I want to use it in the UA sheet, so the loop won't cut it. (Also fix a parsing bug that prevented "of" from working.)