Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Fix curl getting stuck while reading headers | bptato | 2022-06-17 | 1 | -2/+3 |
| | |||||
* | Submit form on pressing enter in search field | bptato | 2022-06-17 | 1 | -1/+13 |
| | |||||
* | Re-implement list items | bptato | 2022-06-17 | 3 | -65/+107 |
| | | | | Now with proper list-style-position: outside support! | ||||
* | Re-implement inline-block | bptato | 2022-06-17 | 3 | -96/+123 |
| | | | | | Still far from standard-compliant, or even non-broken... but it's something | ||||
* | Simplify offset, fix a text node bug | bptato | 2022-06-08 | 3 | -41/+15 |
| | |||||
* | Store html entities as zero terminated strings | bptato | 2022-06-07 | 1 | -4/+4 |
| | |||||
* | Add curl support | bptato | 2022-06-07 | 3 | -4/+141 |
| | | | | This calls the curl binary, not libcurl. | ||||
* | Layout: insignificant changes regarding offset | bptato | 2022-05-29 | 3 | -7/+35 |
| | |||||
* | Add querySelector and querySelectorAll for Element | bptato | 2022-05-23 | 2 | -0/+62 |
| | |||||
* | Fix compilation on 32-bit architectures | bptato | 2022-05-21 | 1 | -5/+4 |
| | |||||
* | Update loader.nim | bptato | 2022-05-21 | 1 | -3/+9 |
| | |||||
* | Update .gitignore | bptato | 2022-05-13 | 1 | -0/+1 |
| | |||||
* | SpecifiedValue -> ComputedValue | bptato | 2022-05-13 | 5 | -66/+66 |
| | | | | Actually it's neither but ComputedValue is more accurate. | ||||
* | Slightly change header handling | bptato | 2022-05-10 | 1 | -4/+11 |
| | |||||
* | Rename conflicting source files | bptato | 2022-05-10 | 9 | -12/+12 |
| | | | | Nim can't really differentiate between them, unfortunately. | ||||
* | Add support for :nth-child, implement textContent | bptato | 2022-05-10 | 3 | -4/+34 |
| | |||||
* | Some refactoring for layout engine rewrite | bptato | 2022-05-10 | 4 | -293/+268 |
| | |||||
* | Update readme | bptato | 2022-04-10 | 1 | -15/+25 |
| | |||||
* | Add cha.exe to gitignore | bptato | 2022-04-10 | 1 | -0/+1 |
| | |||||
* | Add compile.bat for windows (WIP) | bptato | 2022-04-10 | 1 | -0/+10 |
| | |||||
* | Document plans for new layout engine | bptato | 2022-04-10 | 1 | -0/+67 |
| | |||||
* | Fix a windows compilation error | bptato | 2022-02-22 | 1 | -1/+1 |
| | |||||
* | Implement --, handle empty arguments | bptato | 2022-02-19 | 1 | -5/+14 |
| | |||||
* | Reduce formatting complexity | bptato | 2022-02-19 | 4 | -127/+79 |
| | | | | | | Formatting based on cells instead of bytes. No clue why I'd ever thought the latter would be a good idea. This fixes background colors too. I think. | ||||
* | twtstr: replace bisearch with stdlib binarySearch | bptato | 2022-02-19 | 1 | -20/+2 |
| | |||||
* | Fix not being able to load local files with ?, #, etc | bptato | 2022-02-19 | 3 | -5/+19 |
| | |||||
* | Background color improvements | bptato | 2022-02-15 | 3 | -16/+39 |
| | |||||
* | Fix format background unicode problems | bptato | 2022-02-15 | 2 | -25/+54 |
| | |||||
* | Incomplete background-color implementation | bptato | 2022-02-14 | 4 | -48/+163 |
| | | | | Has numerous flaws which will have to be corrected later. | ||||
* | Implement blink tag | bptato | 2022-02-12 | 3 | -0/+11 |
| | | | | with text-decoration: blink. |