summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* html: layout: flex: Add code documentationMichael Drake2022-12-141-1/+126
|
* html: layout: flex: Hoist item placement out of line resolverMichael Drake2022-12-141-50/+50
|
* html: layout: flex: Return NULL for pointerMichael Drake2022-12-141-1/+1
|
* html: layout: Helper for whether flex direction is reversedMichael Drake2022-12-141-0/+13
|
* rsvg246: Fix build against librsvg 2.48Michael Drake2022-12-131-0/+7
| | | | The version of librsvg is used on Ubuntu 20.04TLS.
* rsvg246: Split out width/height acquisitionMichael Drake2022-12-131-21/+29
|
* add rsvg image decoder that uses the new APIVincent Sanders2022-11-273-1/+268
|
* (Element): Honour [SameObject] for ::classList getterDaniel Silverstone2022-11-271-10/+20
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* (docs): Update the unimplemented JS bits listDaniel Silverstone2022-11-271-16/+1
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* DOMTokenList: Add support and testing for thisDaniel Silverstone2022-11-277-0/+278
| | | | | | | | | | | | We add both DOMTokenList and DOMSettableTokenList and introduce polyfills for stringifying it until nsgenbind can do that. We also bring in a test to demonstrate all that we have. Note: This does not implement the extra methods that exist according to MDN, we may need a polyfill to bring that up to snuff. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* utils/utf8.c: Fix missing format string for snprintfDaniel Silverstone2022-11-261-1/+1
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* remove the ambiguity around the reallocation in utf8_to_html()Vincent Sanders2022-11-261-4/+5
|
* consolodate duplicated conversion descriptor cache codeVincent Sanders2022-11-261-58/+61
|
* Improve utf8 conversion functionVincent Sanders2022-11-261-40/+39
| | | | | | | Newer compilers were (correctly) pointing out use after free. Slightly reworkeed conversion function to remove compiler warnings and clean up implementation.
* (duktape): Clear some warnings by adding base data to css rule and stylesheetDaniel Silverstone2022-11-263-0/+48
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* GitHub CI: Make codeql job name match other jobsMichael Drake2022-11-091-1/+1
|
* GitHub CI: Update for new env.shMichael Drake2022-11-093-3/+3
|
* env.sh: Add support for building only a libMichael Drake2022-11-091-56/+75
| | | | | Allow the build environment to be set up for building a library only instead of the whole browser.
* fetchers/curl: drop non-PFS fallback ciphersuiteJohn-Mark Bell2022-11-051-2/+0
|
* fetchers/curl: disable TLS1.0 and TLS1.1 supportJohn-Mark Bell2022-11-052-11/+7
|
* fetchers/curl: explicitly configure TLS1.3 ciphersuitesJohn-Mark Bell2022-11-051-1/+13
| | | | These currently match the defaults, so no functional change.
* gif: Ensure we never pass NSERROR_OK to error broadcastMichael Drake2022-11-041-3/+0
|
* gif: Mark gifs as complete after scanning source dataMichael Drake2022-11-041-2/+4
| | | | | | This allows libnsgif to distinguish between awaiting more data, and a broken truncated GIF. In the latter case we can display what we have.
* RISC OS: conditionally demand ARMEABISupport in !RunJohn-Mark Bell2022-11-033-0/+9
| | | | | | | Will only be enabled if an EABI-aware compiler is used to build the code. At some point, a suitable copy of ARMEABISupport needs adding to the supplied !System.400.Modules along with licensing information in the 3rdParty directory.
* RISC OS: generate unwind tables for EABI buildsJohn-Mark Bell2022-11-031-0/+3
|
* BuildSystem: make package step depend on POSTEXESJohn-Mark Bell2022-11-035-5/+5
| | | | | The POSTEXE stages might add more stuff to the package contents, so ensure they have completed before starting to package things up.
* Buildsystem: support arm-riscos-gnueabiJohn-Mark Bell2022-11-031-14/+26
|
* env.sh: support arm-riscos-gnueabiJohn-Mark Bell2022-11-031-1/+1
|
* html: layout: flex: Disable verbose loggingMichael Drake2022-11-021-21/+23
|
* html: layout: flex: Implement align-items and align-selfMichael Drake2022-11-022-34/+125
|
* html: layout: flex: Implement wrap-reverseMichael Drake2022-11-021-25/+48
|
* html: layout: flex: Don't pass content around unnecessarilyMichael Drake2022-11-021-7/+4
|
* html: layout: flex: Compare line main size with available mainMichael Drake2022-11-021-34/+35
| | | | | | When deciding whether to use the grow or shrink flex factor we we using the available width, rather than the space available in the main direction.
* html: layout: flex: Unify line item placementMichael Drake2022-11-021-60/+43
|
* html: layout helpers: Add helpers for width/height indirectionMichael Drake2022-11-021-0/+14
|
* utils: Use fstatat and unlinkat if supportedJohn-Mark Bell2022-11-023-89/+65
|
* Buildsystem: fix RISC OS AOF matchingJohn-Mark Bell2022-11-021-1/+1
|
* Revert "utils: file: Use fstatat and unlinkat"Michael Drake2022-11-021-27/+12
| | | | | | | | | | On may of the platforms we build for (RISC OS, Windows, Amiga OS4, Amiga OS3, and Atari), this was causing: - utils/file.c:329 error: 'O_DIRECTORY' undeclared - utils/file.c:357 error: 'AT_SYMLINK_NOFOLLOW' undeclared This reverts commit ef00567b029ec007ceab342a2ed1addaa5f63be6.
* html: layout: Remove duplicate typedefsMichael Drake2022-10-291-9/+0
|
* layout: flex: Squash main is usually a function warningMichael Drake2022-10-291-5/+5
|
* html: layout: Initial implementation of display: flexMichael Drake2022-10-2912-92/+1329
|
* html: box_dump: Indicate descendant bounding box valuesMichael Drake2022-10-291-1/+1
|
* layout: minmax pass: Improve handling of {min|max}_width propertiesMichael Drake2022-10-291-32/+59
|
* layout: minmax table: Change logging level to errorMichael Drake2022-10-291-1/+1
|
* layout: calculate_mbp_width: Preserve percentage valuesMichael Drake2022-10-291-2/+2
|
* log: Add flex logging catagoryMichael Drake2022-10-292-0/+2
|
* html: layout: Improve block container assertionsMichael Drake2022-10-291-3/+3
|
* html: layout: Split out common helpersMichael Drake2022-10-292-527/+599
|
* css: Fix dump of display: inline-flexMichael Drake2022-10-291-0/+6
|
* layout: Constify box through layout_find_dimensions()Michael Drake2022-10-291-1/+1
|