summaryrefslogtreecommitdiff
path: root/content/handlers/html/box.h
Commit message (Collapse)AuthorAgeFilesLines
* html: layout: Initial implementation of display: flexMichael Drake2022-10-291-1/+3
|
* html: Add support for OL start attribute.Michael Drake2021-02-101-0/+5
| | | | | | | | Note: Added new box member because rows was unsigned, and it was naughty to use something meant for tables. Note: Now numbers <= 0 can be generated, but LibCSS needs updated to support that.
* layout: Add counting for list items to layout.Michael Drake2021-02-091-1/+0
|
* remove box handling from browser windowVincent Sanders2020-05-251-8/+0
|
* split html box processing codeVincent Sanders2020-04-291-256/+2
| | | | | | | reduce the module size of the html box handling code by splitting into smaller sections. No functional code change.
* clean up html box, no functionality change just cosmeticVincent Sanders2020-04-281-156/+457
| | | | | | split up the html box headers tidy up the documentation comments avoid forward declarations in normalisation implementation
* remove forward declarationsVincent Sanders2020-04-261-0/+12
| | | | | reorder module to remove need for forward function declarations. remove unecessary and confusing parameter macros
* remove unecessary user warning calls and improve error propogation in html boxVincent Sanders2019-11-051-1/+12
|
* Box Conversion: Cancel conversion during html_destroyDaniel Silverstone2019-08-231-1/+2
| | | | | | | | If dom_to_box is still in progress when we destroy an HTML content, we need to cancel the conversion otherwise we will end up with a scheduled callback into infinity. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* html: Mirror gadget values in and out of the DOMDaniel Silverstone2019-08-041-0/+8
| | | | | | | | | Currently only supporting text input, password input, and hidden input, along with text areas, this mirrors the text values in and out of the DOM, allowing JS to adjust the gadget values and for the gadget values to be interrogated from JS. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Box: Add helper to check if box is first child.Michael Drake2018-06-291-0/+11
|
* move html and text content handlers where they belongVincent Sanders2018-05-101-0/+369