Differences From Artifact [b61d072897]:
- File src/sha3.c — part of check-in [1f231db380] at 2022-11-13 16:26:00 on branch wcag-2.1 — Apply fixes to all web views to pass WCAG 2.1 tests performed by "axe DevTools" browser extension. Most fixes related to screen reader compatibility, like making sure that form elements have labels. Some color changes to improve contrast on Default skin. Made more HTML5 compliant. Minor improvement to select combo boxes for UX. Improved Search form UX. Two minor bug fixes for malformed HTML. Fixed help pages to resolve issues with non-compliant HTML being generated. Mostly documented at https://fossil-scm.org/forum/forumpost/aafb17a981df4166 (user: ericwikman size: 18790) [more...]
To Artifact [2ccb200296]:
- File src/sha3.c — part of check-in [537d9e00cf] at 2024-01-09 14:04:07 on branch trunk — Fix harmless compiler warning in sha3.c. (user: drh size: 18774) [more...]
︙ | |||
414 415 416 417 418 419 420 | 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | - + | static void SHA3Update( SHA3Context *p, const unsigned char *aData, unsigned int nData ){ unsigned int i = 0; #if SHA3_BYTEORDER==1234 |
︙ |