Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | css/cascade: remove scoped sheets | bptato | 2023-01-07 | 2 | -19/+26 |
| | | | | ...in favor of handling all style elements like other browsers | ||||
* | dom: fix object conversion bug in options | bptato | 2023-01-05 | 1 | -1/+1 |
| | |||||
* | client, pager, dom, ...: better error handling | bptato | 2023-01-04 | 2 | -8/+8 |
| | | | | Now the browser shouldn't completely die when a buffer crashes. | ||||
* | dom: add better attribute reflection | bptato | 2023-01-02 | 3 | -109/+230 |
| | | | | | Instead of creating a new function for each attribute, use a single magic function for reflected attributes. | ||||
* | dom: support a few more getters/setters | bptato | 2023-01-02 | 1 | -8/+47 |
| | |||||
* | Add support for <label> | bptato | 2023-01-02 | 1 | -1/+53 |
| | |||||
* | dom: fix collection caching | bptato | 2022-12-27 | 1 | -37/+51 |
| | | | | Use ids instead of pure pointers, so we can utilize the JS finalizer. | ||||
* | Implement DOMTokenList, item functions for collections | bptato | 2022-12-26 | 1 | -34/+125 |
| | |||||
* | getElementsByClassName on Document and Element | bptato | 2022-12-26 | 1 | -3/+9 |
| | | | | Instead of Node. | ||||
* | Correct attribute functions, de-extern jserr | bptato | 2022-12-26 | 2 | -76/+55 |
| | | | | | | Instead of unnecessarily marking every jserr function as *, add the used pragma (so the C compiler can get rid of them later.) Also, use the correct definition of attribute namespace. | ||||
* | dom: correct constructors, more create functions | bptato | 2022-12-26 | 2 | -46/+89 |
| | |||||
* | DOM: implement many new methods | bptato | 2022-12-26 | 2 | -8/+124 |
| | |||||
* | dom: add navigator object | bptato | 2022-12-26 | 2 | -2/+58 |
| | |||||
* | dom: fix select default display | bptato | 2022-12-21 | 1 | -3/+15 |
| | |||||
* | Add unicode normalization, etc | bptato | 2022-12-19 | 1 | -2/+2 |
| | |||||
* | More DOM work | bptato | 2022-12-19 | 4 | -250/+548 |
| | |||||
* | More work on DOM (incl. bugfixes) | bptato | 2022-12-19 | 1 | -143/+129 |
| | |||||
* | Add JS support to documents | bptato | 2022-12-18 | 3 | -67/+571 |
| | |||||
* | htmltokenizer: fix after attribute value (quoted) bug | bptato | 2022-12-16 | 1 | -1/+3 |
| | | | | I forgot to change the last case when copy-pasting. Oops. | ||||
* | git wtf moment | bptato | 2022-12-15 | 1 | -11/+0 |
| | |||||
* | Merge branch 'master' of ssh://192.168.0.230/~/x/cha | bptato | 2022-12-15 | 1 | -0/+11 |
|\ | |||||
| * | htmltokenizer: implement a small todo | bptato | 2022-12-15 | 2 | -7/+13 |
| | | |||||
* | | htmltokenizer: implement a small todo | bptato | 2022-12-15 | 2 | -16/+21 |
|/ | |||||
* | htmltokenizer: fix newline handling with insufficient buffer length | bptato | 2022-12-15 | 1 | -2/+6 |
| | |||||
* | 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. |