Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | More DOM work | bptato | 2022-12-19 | 3 | -8/+12 | |
| | ||||||
* | Add JS support to documents | bptato | 2022-12-18 | 1 | -1/+1 | |
| | ||||||
* | Display text for img tag, background-image | bptato | 2022-12-16 | 4 | -17/+55 | |
| | ||||||
* | layout/engine: fix a <br> bug that ate inline boxes, add broken ↵ | bptato | 2022-12-16 | 1 | -4/+32 | |
| | | | | | | | | | min-width/max-width min-width, max-width, min-height, max-height are mostly broken, because they aren't enforced on inline level. Though really the whole size calculation mechanism needs to be refactored, its current state is horrible. | |||||
* | cssparser: check for EOF in first read chunk | bptato | 2022-12-14 | 1 | -1/+4 | |
| | | | | To-do: use decoderstream... | |||||
* | Fix stream error handling confusion, title display | bptato | 2022-12-13 | 1 | -2/+5 | |
| | | | | Also probably other fixes. | |||||
* | cssparser: fix a parseAnB bug | bptato | 2022-12-12 | 1 | -1/+1 | |
| | | | | Just a typo... | |||||
* | Fix color contrast correction | bptato | 2022-12-12 | 1 | -0/+5 | |
| | | | | | Instead of just inverting the color and hoping for the best, convert it to YUV and increase/decrease luminance based on results. | |||||
* | Make background-color non-inherited; fix {}= for CSSComputedValues | bptato | 2022-12-12 | 1 | -7/+8 | |
| | ||||||
* | Add support for q, fix list-item counter behavior | bptato | 2022-12-12 | 3 | -25/+154 | |
| | ||||||
* | Add border-collapse, border-spacing; fix fd sending hack | bptato | 2022-12-11 | 1 | -9/+59 | |
| | | | | | | Note that they don't actually work correctly because of rounding errors. The fd sending hack now emits C directly. Let's hope this actually works. | |||||
* | Add div align | bptato | 2022-12-11 | 2 | -1/+11 | |
| | ||||||
* | Support vertical-align on td | bptato | 2022-12-11 | 2 | -4/+17 | |
| | ||||||
* | Add caption-side | bptato | 2022-12-11 | 1 | -95/+119 | |
| | ||||||
* | Add support for margin-left/right: auto | bptato | 2022-12-11 | 1 | -16/+70 | |
| | ||||||
* | Fix blocking socketstream recv/send, clean up ips/serialize & types/color | bptato | 2022-12-10 | 1 | -3/+0 | |
| | | | | Write always blocks for now, as it's too big of a footgun not to | |||||
* | css/values: better shorthand handling | bptato | 2022-12-08 | 1 | -102/+122 | |
| | ||||||
* | Add multiple text-decoration, overline emulation | bptato | 2022-12-07 | 1 | -12/+12 | |
| | ||||||
* | Fix parsing of empty combinator selectors | bptato | 2022-12-05 | 1 | -1/+6 | |
| | ||||||
* | Fix index error in parseDimensionValues | bptato | 2022-12-03 | 1 | -1/+1 | |
| | ||||||
* | Fix initial values for left, right, top, bottom | bptato | 2022-11-29 | 1 | -1/+6 | |
| | ||||||
* | Add position css property, inline block fixes | bptato | 2022-11-28 | 1 | -3/+31 | |
| | | | | | More specifically, inline block white-space is no longer incorrectly determined by its computed values, but rather by its parent's values. | |||||
* | Add textarea | bptato | 2022-11-28 | 2 | -6/+19 | |
| | | | | Editing is implemented using an external editor (like vi). | |||||
* | Fix some table layout issues | bptato | 2022-11-25 | 2 | -14/+26 | |
| | ||||||
* | Add some quirks mode rules + presentational hints | bptato | 2022-11-25 | 2 | -11/+56 | |
| | | | | Only as a POC for now. | |||||
* | Avoid forking child processes from the main process | bptato | 2022-11-24 | 1 | -1/+3 | |
| | | | | Caveat: this breaks piped streams. | |||||
* | Table improvements | bptato | 2022-11-22 | 1 | -0/+23 | |
| | ||||||
* | Color & term improvements | bptato | 2022-11-21 | 1 | -17/+4 | |
| | ||||||
* | Terminal refactorings | bptato | 2022-11-20 | 1 | -18/+18 | |
| | ||||||
* | Fix table cell size calculation | bptato | 2022-11-19 | 1 | -2/+2 | |
| | ||||||
* | Very much WIP table implementation | bptato | 2022-11-15 | 1 | -9/+9 | |
| | ||||||
* | Make it compile... | bptato | 2022-10-19 | 1 | -2/+2 | |
| | ||||||
* | Re-enable media queries | bptato | 2022-10-19 | 1 | -2/+3 | |
| | ||||||
* | More JS bindings | bptato | 2022-09-13 | 1 | -4/+6 | |
| | ||||||
* | Fix combinator bugs + reimplement querySelectorAll | bptato | 2022-09-01 | 2 | -119/+51 | |
| | ||||||
* | Fix :nth-last-child | bptato | 2022-08-23 | 1 | -3/+9 | |
| | ||||||
* | Use more accurate selector terminology | bptato | 2022-08-23 | 3 | -31/+39 | |
| | ||||||
* | Fix nth-child bugs, rename select to match | bptato | 2022-08-23 | 6 | -67/+74 | |
| | ||||||
* | Merge functional and normal pseudo-class selectors | bptato | 2022-08-21 | 4 | -136/+351 | |
| | | | | And parse An+B syntax for nth-child/nth-last-child. | |||||
* | Refactor css function selectors a bit | bptato | 2022-08-20 | 3 | -33/+32 | |
| | ||||||
* | Fix incorrect selector parsing, remove httpclient from loader | bptato | 2022-08-03 | 3 | -11/+87 | |
| | ||||||
* | Add interactive <select> | bptato | 2022-07-31 | 3 | -2/+13 | |
| | ||||||
* | More table work | bptato | 2022-07-30 | 1 | -6/+7 | |
| | ||||||
* | Implement revert value | bptato | 2022-07-30 | 3 | -254/+171 | |
| | ||||||
* | Update CSS tokenizer | bptato | 2022-07-29 | 5 | -245/+259 | |
| | | | | 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 | 1 | -3/+3 | |
| | ||||||
* | Fix cascading bugs & performance issues | bptato | 2022-07-28 | 3 | -5/+16 | |
| | ||||||
* | Fix StyledNode invalidation & others | bptato | 2022-07-27 | 4 | -140/+284 | |
| | ||||||
* | Fix & simplify blockgroup | bptato | 2022-07-25 | 1 | -1/+1 | |
| | | | | + start implementing table |