about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Update CSS tokenizerbptato2022-07-296-246/+260
| | | | It was slightly outdated and in many places incorrect.
* StyledNode: avoid duplicate dependenciesbptato2022-07-292-2/+6
|
* Fix incorrect use of del()bptato2022-07-293-15/+15
|
* Add missing pop pragmabptato2022-07-291-0/+1
|
* Fix cascading bugs & performance issuesbptato2022-07-284-35/+48
|
* Fix StyledNode invalidation & othersbptato2022-07-2712-221/+419
|
* Fix & simplify blockgroupbptato2022-07-253-22/+51
| | | | + start implementing table
* layout: update commentbptato2022-07-251-1/+0
|
* MarkerBoxBuilder: get rid of ordinalvaluebptato2022-07-252-4/+1
|
* Inline atom x position cleanupbptato2022-07-251-5/+3
|
* Incremental search fixesbptato2022-07-254-4/+6
|
* Remove unmaintained networking callsbptato2022-07-244-140/+3
|
* Link to libcurlbptato2022-07-244-24/+359
|
* Fix an infinite loop in getElementByIdbptato2022-07-231-11/+4
|
* Improved incremental search: support unicodebptato2022-07-237-59/+189
|
* Fix inline block width calculationbptato2022-07-221-2/+5
|
* Add search functionbptato2022-07-2211-90/+680
| | | | | Uses libregexp from QuickJS. Incremental search is quite hacky for now, but overall it seems to work OK.
* Optimize dombptato2022-07-214-91/+100
|
* Refactor some layout engine types, fix list-itembptato2022-07-203-87/+85
|
* Throw out unused cells() functionsbptato2022-07-202-49/+2
| | | | | They were an artifact of the previous layout engine, and are not needed anymore.
* Clean up vertical line box alignment codebptato2022-07-203-99/+165
| | | | | | This fixes the non-standard alignment of inline blocks. While we're at it, renamed "inline rows" to line boxes, as that's pretty much what they are now.
* Fix console.logbptato2022-07-181-1/+1
|
* Fix list-item counter displaybptato2022-07-181-8/+4
|
* Enable remote stylesheets; fix inline block valuesbptato2022-07-183-3/+4
|
* Fix yet another parser bugbptato2022-07-181-2/+1
|
* Fix another parser bugbptato2022-07-171-3/+4
|
* Fix a parser bugbptato2022-07-173-13/+48
| | | | Plus a few warnings.
* Implement select element displaybptato2022-07-177-73/+268
| | | | | You can't actually use them yet. But at least they don't flood the screen with options now.
* Fix formsbptato2022-07-177-69/+45
|
* Fix StyledNode cachingbptato2022-07-172-94/+38
|
* Use StyledNodes instead of passing the entire DOM to the layout enginebptato2022-07-167-189/+261
| | | | | This moves pseudo element generation to the cascading phase. For now it also breaks style caching.
* Fix basic list displaybptato2022-07-153-17/+21
|
* Fix page reloadingbptato2022-07-151-1/+1
|
* Refactor layout enginebptato2022-07-153-139/+154
|
* Fix reloadingbptato2022-07-141-0/+3
|
* Clean up HTML namespace mess, enable processInForeignContentbptato2022-07-142-26/+91
|
* getPageCurl: avoid loading pages that couldn't be loadedbptato2022-07-141-0/+4
|
* Throw out unused functionsbptato2022-07-132-201/+0
|
* Don't zero-fill makewidthtablebptato2022-07-131-1/+1
|
* Initial QuickJS integrationbptato2022-07-135-4/+314
|
* Fix a tokenizer bug, clean up some warningsbptato2022-07-127-65/+50
|
* Fix and clean up some dom-based featuresbptato2022-07-115-90/+101
|
* Implement HTML5 parsingbptato2022-07-1111-2138/+3935
| | | | | | | 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.
* Implement standard-compliant HTML tokenizerbptato2022-06-274-14/+1518
| | | | | | Seems performant enough, though I'm not sure whether it is actually producing correct output. Still missing: tests and the actual parsing.
* Enable overloadable enumsbptato2022-06-271-0/+1
|
* specified -> computedbptato2022-06-183-120/+120
| | | | Continuing commit 7e65add
* Apply inline dimensions for inline blocks toobptato2022-06-181-6/+7
|
* Update documentationbptato2022-06-172-11/+32
|
* Fix height being incorrectly applied to list itemsbptato2022-06-171-3/+8
|
* Fix cursorPrevLinkbptato2022-06-171-14/+32
|