about summary refs log tree commit diff stats
path: root/src/html
Commit message (Collapse)AuthorAgeFilesLines
* dom: fix collection cachingbptato2022-12-271-37/+51
| | | | Use ids instead of pure pointers, so we can utilize the JS finalizer.
* Implement DOMTokenList, item functions for collectionsbptato2022-12-261-34/+125
|
* getElementsByClassName on Document and Elementbptato2022-12-261-3/+9
| | | | Instead of Node.
* Correct attribute functions, de-extern jserrbptato2022-12-262-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 functionsbptato2022-12-262-46/+89
|
* DOM: implement many new methodsbptato2022-12-262-8/+124
|
* dom: add navigator objectbptato2022-12-262-2/+58
|
* dom: fix select default displaybptato2022-12-211-3/+15
|
* Add unicode normalization, etcbptato2022-12-191-2/+2
|
* More DOM workbptato2022-12-194-250/+548
|
* More work on DOM (incl. bugfixes)bptato2022-12-191-143/+129
|
* Add JS support to documentsbptato2022-12-183-67/+571
|
* htmltokenizer: fix after attribute value (quoted) bugbptato2022-12-161-1/+3
| | | | I forgot to change the last case when copy-pasting. Oops.
* git wtf momentbptato2022-12-151-11/+0
|
* Merge branch 'master' of ssh://192.168.0.230/~/x/chabptato2022-12-151-0/+11
|\
| * htmltokenizer: implement a small todobptato2022-12-152-7/+13
| |
* | htmltokenizer: implement a small todobptato2022-12-152-16/+21
|/
* htmltokenizer: fix newline handling with insufficient buffer lengthbptato2022-12-151-2/+6
|
* Fix decoder bugs, move decoder to encoding/bptato2022-12-102-6/+6
|
* Add support for the encoding standard, fix parseLegacyColorbptato2022-12-102-120/+233
| | | | Also, fix a bug in the
* htmlparser: fix bug where tokens wouldn't be reprocessed after close_cellbptato2022-12-071-0/+1
|
* Fix typobptato2022-11-301-1/+1
|
* Add textareabptato2022-11-283-79/+154
| | | | Editing is implemented using an external editor (like vi).
* Add support for <button>bptato2022-11-272-4/+28
|
* Fix adoption agency algorithm bugsbptato2022-11-271-5/+11
|
* Fix some table layout issuesbptato2022-11-251-1/+1
|
* Re-enable media queriesbptato2022-10-191-4/+11
|
* Rename jsget/jsset to jsfget/jsfset for functionsbptato2022-09-161-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 loopbptato2022-09-161-8/+42
|
* More JS bindingsbptato2022-09-133-15/+84
|
* Fix nth-child bugs, rename select to matchbptato2022-08-231-3/+15
|
* Fix incorrect selector parsing, remove httpclient from loaderbptato2022-08-031-0/+9
|
* Add interactive <select>bptato2022-07-311-2/+17
|
* Add SupportedFormAssociatedElementsbptato2022-07-303-8/+11
|
* Increase tokenizer buffer size, add mark color optionbptato2022-07-291-1/+1
|
* Fix incorrect use of del()bptato2022-07-292-12/+12
|
* Fix StyledNode invalidation & othersbptato2022-07-271-4/+3
|
* Fix an infinite loop in getElementByIdbptato2022-07-231-11/+4
|
* Optimize dombptato2022-07-211-74/+72
|
* Enable remote stylesheets; fix inline block valuesbptato2022-07-181-1/+2
|
* Fix yet another parser bugbptato2022-07-181-2/+1
|
* Fix another parser bugbptato2022-07-171-3/+4
|
* Fix a parser bugbptato2022-07-171-2/+47
| | | | Plus a few warnings.
* Implement select element displaybptato2022-07-172-54/+183
| | | | | You can't actually use them yet. But at least they don't flood the screen with options now.
* Fix formsbptato2022-07-173-24/+21
|
* Use StyledNodes instead of passing the entire DOM to the layout enginebptato2022-07-161-36/+6
| | | | | This moves pseudo element generation to the cascading phase. For now it also breaks style caching.
* Clean up HTML namespace mess, enable processInForeignContentbptato2022-07-142-26/+91
|
* Fix a tokenizer bug, clean up some warningsbptato2022-07-123-10/+30
|
* Fix and clean up some dom-based featuresbptato2022-07-112-52/+77
|
* Implement HTML5 parsingbptato2022-07-114-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.