about summary refs log tree commit diff stats
path: root/src/css/cascade.nim
Commit message (Collapse)AuthorAgeFilesLines
...
* Support vertical-align on tdbptato2022-12-111-1/+14
|
* Add textareabptato2022-11-281-5/+18
| | | | Editing is implemented using an external editor (like vi).
* Fix some table layout issuesbptato2022-11-251-0/+2
|
* Add some quirks mode rules + presentational hintsbptato2022-11-251-1/+43
| | | | Only as a POC for now.
* Avoid forking child processes from the main processbptato2022-11-241-1/+3
| | | | Caveat: this breaks piped streams.
* Make it compile...bptato2022-10-191-2/+2
|
* Re-enable media queriesbptato2022-10-191-2/+3
|
* Fix nth-child bugs, rename select to matchbptato2022-08-231-1/+1
|
* Fix incorrect selector parsing, remove httpclient from loaderbptato2022-08-031-9/+24
|
* Implement revert valuebptato2022-07-301-59/+20
|
* Fix cascading bugs & performance issuesbptato2022-07-281-3/+10
|
* Fix StyledNode invalidation & othersbptato2022-07-271-44/+40
|
* Optimize dombptato2022-07-211-3/+4
|
* Fix formsbptato2022-07-171-39/+17
|
* Fix StyledNode cachingbptato2022-07-171-93/+37
|
* Use StyledNodes instead of passing the entire DOM to the layout enginebptato2022-07-161-30/+175
| | | | | This moves pseudo element generation to the cascading phase. For now it also breaks style caching.
* Implement HTML5 parsingbptato2022-07-111-4/+6
| | | | | | | Completely replaced the previous HTML2 (?) parser, which was a bad re-implementation of w3m's parser in the first place. Now we have a (sort of) compliant HTML5 parser. Needs tests, badly.
* SpecifiedValue -> ComputedValuebptato2022-05-131-2/+2
| | | | Actually it's neither but ComputedValue is more accurate.
* Rename conflicting source filesbptato2022-05-101-2/+2
| | | | Nim can't really differentiate between them, unfortunately.
* Fix stylesheet containment bugbptato2022-01-251-32/+35
|
* Fix author style sheet assignmentbptato2022-01-241-2/+9
|
* Optimize cascading algorithmbptato2022-01-241-61/+27
|
* Refactorbptato2022-01-241-1/+1
|
* Fix ::before pseudo elem positioningbptato2022-01-231-4/+7
|
* Support external stylesheetsbptato2022-01-231-1/+12
|
* Avoid unnecessary rendering on hover change etcbptato2022-01-221-4/+24
|
* Re-implement, height, fix pseudo on hoverbptato2022-01-221-0/+2
|
* Fix media query bug, do not refresh page without css change (wip)bptato2022-01-221-2/+2
|
* Re-implement inline blocksbptato2022-01-191-5/+1
|
* Fix crash on reshapebptato2022-01-191-2/+0
|
* Implement basics of new layout enginebptato2022-01-181-5/+19
|
* Small cascade optimizationsbptato2021-12-311-30/+22
|
* Cascade optimizations, start layout engine rewritebptato2021-12-291-8/+16
|
* Implement basic media query supportbptato2021-12-271-15/+57
|
* Preparation for at rules, small inline-block fixbptato2021-12-191-13/+16
|
* Refactor selector code, optimize style tagsbptato2021-12-181-0/+152