about summary refs log tree commit diff stats
path: root/src/html/dom.nim
Commit message (Collapse)AuthorAgeFilesLines
...
* Clean up HTML namespace mess, enable processInForeignContentbptato2022-07-141-9/+8
|
* Fix a tokenizer bug, clean up some warningsbptato2022-07-121-6/+19
|
* Fix and clean up some dom-based featuresbptato2022-07-111-44/+69
|
* Implement HTML5 parsingbptato2022-07-111-88/+348
| | | | | | | 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.
* Add querySelector and querySelectorAll for Elementbptato2022-05-231-0/+17
|
* SpecifiedValue -> ComputedValuebptato2022-05-131-2/+2
| | | | Actually it's neither but ComputedValue is more accurate.
* Add support for :nth-child, implement textContentbptato2022-05-101-0/+11
|
* Cleanup form method codebptato2022-02-081-8/+38
|
* Implement formsbptato2022-01-291-39/+188
| | | | | | Note: for now, only input tags are supported. Also the implementation is extremely hacky and needs refactoring... But it works, I think.
* Fix stylesheet containment bugbptato2022-01-251-4/+0
|
* Optimize cascading algorithmbptato2022-01-241-0/+1
|
* Refactorbptato2022-01-241-11/+12
|
* Fix node to cell mappingbptato2022-01-241-8/+29
|
* Support external stylesheetsbptato2022-01-231-2/+11
|
* Fix page navigationbptato2022-01-221-4/+7
|
* Remove specified values for PSEUDO_NONEbptato2022-01-191-1/+1
|
* Implement basics of new layout enginebptato2022-01-181-2/+10
|
* Refactorbptato2021-12-291-1/+1
|
* Cascade optimizations, start layout engine rewritebptato2021-12-291-1/+1
|
* Proper URL handlingbptato2021-12-261-4/+7
|
* Implement gotoAnchorbptato2021-12-201-0/+5
|
* Preparation for at rules, small inline-block fixbptato2021-12-191-2/+2
|
* Refactor selector code, optimize style tagsbptato2021-12-181-0/+11
|
* Rework cascading algorithmbptato2021-12-181-4/+3
|
* More code formatting consistencybptato2021-12-171-1/+1
|
* Refactor enumsbptato2021-12-151-1/+1
|
* Add lists, function selector fixesbptato2021-12-141-19/+77
|
* Support ::before, ::after pseudo elementsbptato2021-12-131-1/+3
|
* Support inline style attributesbptato2021-12-101-7/+3
|
* Support CSS next- and subsequent sibling combinatorsbptato2021-11-231-0/+16
|
* Refactor cascading logic and css valuesbptato2021-11-191-287/+4
| | | | | applyStylesheets is now in style.nim and computed values etc in values.nim
* User stylesheets and applyStylesheets optimizationsbptato2021-11-191-68/+74
|
* Initial implementation of CSS :hoverbptato2021-11-141-7/+3
|
* Refactor output formatting code, drop non-ansi supportbptato2021-11-131-3/+0
|
* Ignore invalid css valuesbptato2021-11-131-12/+11
|
* Implement css property inheritancebptato2021-11-121-14/+10
|
* Clean up unused importsbptato2021-11-121-2/+0
|
* Colors, italic, bold, read from pipebptato2021-11-121-4/+26
|
* Layout engine improvements, use author style sheetbptato2021-11-101-36/+92
|
* It's broken but it could be worsebptato2021-11-091-34/+59
|
* Get rid of some old code, work on css property handlingbptato2021-08-111-84/+13
|
* Rename cssparser.nimbptato2021-08-101-1/+1
|
* Some refactoringbptato2021-08-101-36/+0
|
* Implement CSS display none in box renderer etc.bptato2021-08-081-9/+12
| | | | | Other changes being bugfixes and a temporary implementation of "view source"
* Reorganize importsbptato2021-08-071-11/+8
|
* HTML display with highly broken box modelbptato2021-08-061-7/+34
|
* Refactoring in buffer.nimbptato2021-08-061-23/+6
|
* Refactor display.nim and twtio.nimbptato2021-08-061-2/+0
|
* more stuffbptato2021-08-051-9/+6
|
* More css stuffbptato2021-08-041-52/+76
|