Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor css function selectors a bit | bptato | 2022-08-20 | 3 | -33/+32 |
| | |||||
* | Small refactoring | bptato | 2022-08-20 | 4 | -22/+25 |
| | |||||
* | Work on tables | bptato | 2022-08-18 | 2 | -6/+59 |
| | |||||
* | Fix request error handling | bptato | 2022-08-18 | 5 | -46/+47 |
| | |||||
* | Update documentation | bptato | 2022-08-18 | 1 | -9/+10 |
| | |||||
* | Clean up client request methods, add DUPE_BUFFER | bptato | 2022-08-18 | 6 | -92/+96 |
| | |||||
* | Use a separate process for file loading | bptato | 2022-08-18 | 6 | -61/+311 |
| | | | | | Not very useful for now, since we still have to load the entire page before parsing it. | ||||
* | Refactor fileloader | bptato | 2022-08-08 | 4 | -212/+263 |
| | |||||
* | Remove httpclient dependency | bptato | 2022-08-04 | 3 | -30/+72 |
| | |||||
* | Slightly better handling of http auth + redirect | bptato | 2022-08-03 | 2 | -24/+32 |
| | |||||
* | Fix incorrect selector parsing, remove httpclient from loader | bptato | 2022-08-03 | 5 | -13/+96 |
| | |||||
* | Do not display password on status line | bptato | 2022-08-03 | 2 | -3/+3 |
| | | | | Editing the URL still does. | ||||
* | Store FixedCell contents as str | bptato | 2022-08-03 | 2 | -13/+11 |
| | |||||
* | Fix non-special url scheme parsing | bptato | 2022-08-02 | 2 | -5/+6 |
| | |||||
* | Fix renderdocument setText etc. | bptato | 2022-08-02 | 4 | -120/+138 |
| | |||||
* | Make marks a property of buffer | bptato | 2022-08-01 | 3 | -16/+28 |
| | | | | So that re-rendering the buffer doesn't destroy all marks. | ||||
* | Hide passwords while typing | bptato | 2022-07-31 | 3 | -13/+24 |
| | |||||
* | Add interactive <select> | bptato | 2022-07-31 | 6 | -18/+77 |
| | |||||
* | Update docs | bptato | 2022-07-30 | 2 | -23/+20 |
| | |||||
* | Add SupportedFormAssociatedElements | bptato | 2022-07-30 | 3 | -8/+11 |
| | |||||
* | Implement HTTP Auth | bptato | 2022-07-30 | 4 | -40/+146 |
| | | | | | Also use our own redirection implementation instead of curl follow redirects. | ||||
* | More table work | bptato | 2022-07-30 | 3 | -33/+83 |
| | |||||
* | Enable raw mode during rendering | bptato | 2022-07-30 | 3 | -6/+32 |
| | | | | So that non-processed characters aren't displayed on the screen | ||||
* | Implement revert value | bptato | 2022-07-30 | 4 | -254/+327 |
| | |||||
* | Increase tokenizer buffer size, add mark color option | bptato | 2022-07-29 | 5 | -2/+23 |
| | |||||
* | Update CSS tokenizer | bptato | 2022-07-29 | 6 | -246/+260 |
| | | | | It was slightly outdated and in many places incorrect. | ||||
* | StyledNode: avoid duplicate dependencies | bptato | 2022-07-29 | 2 | -2/+6 |
| | |||||
* | Fix incorrect use of del() | bptato | 2022-07-29 | 3 | -15/+15 |
| | |||||
* | Add missing pop pragma | bptato | 2022-07-29 | 1 | -0/+1 |
| | |||||
* | Fix cascading bugs & performance issues | bptato | 2022-07-28 | 4 | -35/+48 |
| | |||||
* | Fix StyledNode invalidation & others | bptato | 2022-07-27 | 12 | -221/+419 |
| | |||||
* | Fix & simplify blockgroup | bptato | 2022-07-25 | 3 | -22/+51 |
| | | | | + start implementing table | ||||
* | layout: update comment | bptato | 2022-07-25 | 1 | -1/+0 |
| | |||||
* | MarkerBoxBuilder: get rid of ordinalvalue | bptato | 2022-07-25 | 2 | -4/+1 |
| | |||||
* | Inline atom x position cleanup | bptato | 2022-07-25 | 1 | -5/+3 |
| | |||||
* | Incremental search fixes | bptato | 2022-07-25 | 4 | -4/+6 |
| | |||||
* | Remove unmaintained networking calls | bptato | 2022-07-24 | 4 | -140/+3 |
| | |||||
* | Link to libcurl | bptato | 2022-07-24 | 4 | -24/+359 |
| | |||||
* | Fix an infinite loop in getElementById | bptato | 2022-07-23 | 1 | -11/+4 |
| | |||||
* | Improved incremental search: support unicode | bptato | 2022-07-23 | 7 | -59/+189 |
| | |||||
* | Fix inline block width calculation | bptato | 2022-07-22 | 1 | -2/+5 |
| | |||||
* | Add search function | bptato | 2022-07-22 | 11 | -90/+680 |
| | | | | | Uses libregexp from QuickJS. Incremental search is quite hacky for now, but overall it seems to work OK. | ||||
* | Optimize dom | bptato | 2022-07-21 | 4 | -91/+100 |
| | |||||
* | Refactor some layout engine types, fix list-item | bptato | 2022-07-20 | 3 | -87/+85 |
| | |||||
* | Throw out unused cells() functions | bptato | 2022-07-20 | 2 | -49/+2 |
| | | | | | They were an artifact of the previous layout engine, and are not needed anymore. | ||||
* | Clean up vertical line box alignment code | bptato | 2022-07-20 | 3 | -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.log | bptato | 2022-07-18 | 1 | -1/+1 |
| | |||||
* | Fix list-item counter display | bptato | 2022-07-18 | 1 | -8/+4 |
| | |||||
* | Enable remote stylesheets; fix inline block values | bptato | 2022-07-18 | 3 | -3/+4 |
| | |||||
* | Fix yet another parser bug | bptato | 2022-07-18 | 1 | -2/+1 |
| |