Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Fix another parser bug | bptato | 2022-07-17 | 1 | -3/+4 |
| | |||||
* | Fix a parser bug | bptato | 2022-07-17 | 3 | -13/+48 |
| | | | | Plus a few warnings. | ||||
* | Implement select element display | bptato | 2022-07-17 | 7 | -73/+268 |
| | | | | | You can't actually use them yet. But at least they don't flood the screen with options now. | ||||
* | Fix forms | bptato | 2022-07-17 | 7 | -69/+45 |
| | |||||
* | Fix StyledNode caching | bptato | 2022-07-17 | 2 | -94/+38 |
| | |||||
* | Use StyledNodes instead of passing the entire DOM to the layout engine | bptato | 2022-07-16 | 7 | -189/+261 |
| | | | | | This moves pseudo element generation to the cascading phase. For now it also breaks style caching. | ||||
* | Fix basic list display | bptato | 2022-07-15 | 3 | -17/+21 |
| | |||||
* | Fix page reloading | bptato | 2022-07-15 | 1 | -1/+1 |
| | |||||
* | Refactor layout engine | bptato | 2022-07-15 | 3 | -139/+154 |
| | |||||
* | Fix reloading | bptato | 2022-07-14 | 1 | -0/+3 |
| | |||||
* | Clean up HTML namespace mess, enable processInForeignContent | bptato | 2022-07-14 | 2 | -26/+91 |
| | |||||
* | getPageCurl: avoid loading pages that couldn't be loaded | bptato | 2022-07-14 | 1 | -0/+4 |
| | |||||
* | Throw out unused functions | bptato | 2022-07-13 | 2 | -201/+0 |
| | |||||
* | Don't zero-fill makewidthtable | bptato | 2022-07-13 | 1 | -1/+1 |
| | |||||
* | Initial QuickJS integration | bptato | 2022-07-13 | 5 | -4/+314 |
| | |||||
* | Fix a tokenizer bug, clean up some warnings | bptato | 2022-07-12 | 7 | -65/+50 |
| | |||||
* | Fix and clean up some dom-based features | bptato | 2022-07-11 | 5 | -90/+101 |
| | |||||
* | Implement HTML5 parsing | bptato | 2022-07-11 | 11 | -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 tokenizer | bptato | 2022-06-27 | 4 | -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 enums | bptato | 2022-06-27 | 1 | -0/+1 |
| | |||||
* | specified -> computed | bptato | 2022-06-18 | 3 | -120/+120 |
| | | | | Continuing commit 7e65add | ||||
* | Apply inline dimensions for inline blocks too | bptato | 2022-06-18 | 1 | -6/+7 |
| | |||||
* | Update documentation | bptato | 2022-06-17 | 2 | -11/+32 |
| | |||||
* | Fix height being incorrectly applied to list items | bptato | 2022-06-17 | 1 | -3/+8 |
| | |||||
* | Fix cursorPrevLink | bptato | 2022-06-17 | 1 | -14/+32 |
| |