Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix decoder bugs, move decoder to encoding/ | bptato | 2022-12-10 | 2 | -6/+6 |
| | |||||
* | Add support for the encoding standard, fix parseLegacyColor | bptato | 2022-12-10 | 2 | -120/+233 |
| | | | | Also, fix a bug in the | ||||
* | htmlparser: fix bug where tokens wouldn't be reprocessed after close_cell | bptato | 2022-12-07 | 1 | -0/+1 |
| | |||||
* | Fix typo | bptato | 2022-11-30 | 1 | -1/+1 |
| | |||||
* | Add textarea | bptato | 2022-11-28 | 3 | -79/+154 |
| | | | | Editing is implemented using an external editor (like vi). | ||||
* | Add support for <button> | bptato | 2022-11-27 | 2 | -4/+28 |
| | |||||
* | Fix adoption agency algorithm bugs | bptato | 2022-11-27 | 1 | -5/+11 |
| | |||||
* | Fix some table layout issues | bptato | 2022-11-25 | 1 | -1/+1 |
| | |||||
* | Re-enable media queries | bptato | 2022-10-19 | 1 | -4/+11 |
| | |||||
* | Rename jsget/jsset to jsfget/jsfset for functions | bptato | 2022-09-16 | 1 | -5/+5 |
| | | | | | The original idea was to use the same pragmas as object members, but unfortunately this doesn't seem to work consistently after all. | ||||
* | Bugfixes & test JS event loop | bptato | 2022-09-16 | 1 | -8/+42 |
| | |||||
* | More JS bindings | bptato | 2022-09-13 | 3 | -15/+84 |
| | |||||
* | Fix nth-child bugs, rename select to match | bptato | 2022-08-23 | 1 | -3/+15 |
| | |||||
* | Fix incorrect selector parsing, remove httpclient from loader | bptato | 2022-08-03 | 1 | -0/+9 |
| | |||||
* | Add interactive <select> | bptato | 2022-07-31 | 1 | -2/+17 |
| | |||||
* | Add SupportedFormAssociatedElements | bptato | 2022-07-30 | 3 | -8/+11 |
| | |||||
* | Increase tokenizer buffer size, add mark color option | bptato | 2022-07-29 | 1 | -1/+1 |
| | |||||
* | Fix incorrect use of del() | bptato | 2022-07-29 | 2 | -12/+12 |
| | |||||
* | Fix StyledNode invalidation & others | bptato | 2022-07-27 | 1 | -4/+3 |
| | |||||
* | Fix an infinite loop in getElementById | bptato | 2022-07-23 | 1 | -11/+4 |
| | |||||
* | Optimize dom | bptato | 2022-07-21 | 1 | -74/+72 |
| | |||||
* | Enable remote stylesheets; fix inline block values | bptato | 2022-07-18 | 1 | -1/+2 |
| | |||||
* | 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 | 1 | -2/+47 |
| | | | | Plus a few warnings. | ||||
* | Implement select element display | bptato | 2022-07-17 | 2 | -54/+183 |
| | | | | | 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 | 3 | -24/+21 |
| | |||||
* | Use StyledNodes instead of passing the entire DOM to the layout engine | bptato | 2022-07-16 | 1 | -36/+6 |
| | | | | | This moves pseudo element generation to the cascading phase. For now it also breaks style caching. | ||||
* | Clean up HTML namespace mess, enable processInForeignContent | bptato | 2022-07-14 | 2 | -26/+91 |
| | |||||
* | Fix a tokenizer bug, clean up some warnings | bptato | 2022-07-12 | 3 | -10/+30 |
| | |||||
* | Fix and clean up some dom-based features | bptato | 2022-07-11 | 2 | -52/+77 |
| | |||||
* | Implement HTML5 parsing | bptato | 2022-07-11 | 4 | -2067/+3856 |
| | | | | | | | 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 | 1 | -1/+1492 |
| | | | | | | Seems performant enough, though I'm not sure whether it is actually producing correct output. Still missing: tests and the actual parsing. | ||||
* | Store html entities as zero terminated strings | bptato | 2022-06-07 | 1 | -4/+4 |
| | |||||
* | Add querySelector and querySelectorAll for Element | bptato | 2022-05-23 | 1 | -0/+17 |
| | |||||
* | SpecifiedValue -> ComputedValue | bptato | 2022-05-13 | 1 | -2/+2 |
| | | | | Actually it's neither but ComputedValue is more accurate. | ||||
* | Rename conflicting source files | bptato | 2022-05-10 | 1 | -0/+0 |
| | | | | Nim can't really differentiate between them, unfortunately. | ||||
* | Add support for :nth-child, implement textContent | bptato | 2022-05-10 | 1 | -0/+11 |
| | |||||
* | Some loader polishing | bptato | 2022-02-09 | 1 | -1/+10 |
| | |||||
* | parse_tag: fix html entities in values | bptato | 2022-02-08 | 1 | -1/+1 |
| | |||||
* | Cleanup form method code | bptato | 2022-02-08 | 1 | -8/+38 |
| | |||||
* | Implement forms | bptato | 2022-01-29 | 2 | -42/+208 |
| | | | | | | Note: for now, only input tags are supported. Also the implementation is extremely hacky and needs refactoring... But it works, I think. | ||||
* | Implement text-align and <center> | bptato | 2022-01-29 | 1 | -2/+2 |
| | |||||
* | Fix stylesheet containment bug | bptato | 2022-01-25 | 2 | -12/+2 |
| | |||||
* | Optimize cascading algorithm | bptato | 2022-01-24 | 2 | -0/+8 |
| | |||||
* | Refactor | bptato | 2022-01-24 | 1 | -11/+12 |
| | |||||
* | Fix head parsing | bptato | 2022-01-24 | 1 | -1/+1 |
| | |||||
* | Fix node to cell mapping | bptato | 2022-01-24 | 1 | -8/+29 |
| | |||||
* | Infer that we're in document body for text | bptato | 2022-01-23 | 1 | -4/+6 |
| | |||||
* | Support external stylesheets | bptato | 2022-01-23 | 2 | -2/+14 |
| |