about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Work on tablesbptato2022-08-182-6/+59
|
* Fix request error handlingbptato2022-08-185-46/+47
|
* Clean up client request methods, add DUPE_BUFFERbptato2022-08-185-90/+93
|
* Use a separate process for file loadingbptato2022-08-186-61/+311
| | | | | Not very useful for now, since we still have to load the entire page before parsing it.
* Refactor fileloaderbptato2022-08-084-212/+263
|
* Remove httpclient dependencybptato2022-08-043-30/+72
|
* Slightly better handling of http auth + redirectbptato2022-08-032-24/+32
|
* Fix incorrect selector parsing, remove httpclient from loaderbptato2022-08-035-13/+96
|
* Do not display password on status linebptato2022-08-032-3/+3
| | | | Editing the URL still does.
* Store FixedCell contents as strbptato2022-08-032-13/+11
|
* Fix non-special url scheme parsingbptato2022-08-022-5/+6
|
* Fix renderdocument setText etc.bptato2022-08-024-120/+138
|
* Make marks a property of bufferbptato2022-08-013-16/+28
| | | | So that re-rendering the buffer doesn't destroy all marks.
* Hide passwords while typingbptato2022-07-313-13/+24
|
* Add interactive <select>bptato2022-07-315-7/+62
|
* Update docsbptato2022-07-301-0/+2
|
* Add SupportedFormAssociatedElementsbptato2022-07-303-8/+11
|
* Implement HTTP Authbptato2022-07-304-40/+146
| | | | | Also use our own redirection implementation instead of curl follow redirects.
* More table workbptato2022-07-303-33/+83
|
* Enable raw mode during renderingbptato2022-07-303-6/+32
| | | | So that non-processed characters aren't displayed on the screen
* Implement revert valuebptato2022-07-304-254/+327
|
* Increase tokenizer buffer size, add mark color optionbptato2022-07-294-2/+19
|
* 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-2711-215/+415
|
* 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-243-136/+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-2210-90/+676
| | | | | 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-176-73/+234
| | | | | You can't actually use them yet. But at least they don't flood the screen with options now.