Kasper Isager Dalsgarð
Kasper Isager Dalsgarð
This pull request instructs Metro to pull `sodium-react-native` when bundling `sodium-universal` for React Native. If not installed, Metro will fail with a resolution error.
Running through the test cases changed in #1102, I took note of failed example 7: ```html ``` This is supposed to fail the rule and this I'm absolutely on board...
Visible label is part of accessible name (2ee8b8): Expectation seems to have unintended consequences
The expectation currently reads: > For each target element, all text nodes in the visible text content either match or are contained within the accessible name of this target element,...
The last time an ADR was added was in March, 2019: 3b4329a96ab0c180fe6027cfb92be8a9270406b8. Since then, several additional architecture decisions have been made, notably as part of #165. #172 was opened as...
https://wicg.github.io/construct-stylesheets/, if and when they become more widely supported.
As part of the refactor in #300, the code that dealt with [step 2C of the accessible name computation](https://w3c.github.io/accname/#step2C) wasn't reintroduced. While not critical to the current ruleset, we should...
As part of #221, we agreed to start doing change logs as part of pull requests so it didn't become an afterthought. However, it has now happened more than once...
Servo has a pretty neat implementation of style sharing that we may, or may not, benefit from borrowing. See: https://github.com/servo/servo/wiki/styling-overview
An example is the `` element which should have an implicit role of `region` _if_ the element also has an accessible name: https://w3c.github.io/html-aam/#el-section. Alfa does not yet handle cases like...
`isVisible()` returns `true` for the following case: ```html .hidden { position: absolute; width: 100%; transform: translateX(100%); } This text is hidden ``` - [ ] Follow-up to DEV-12417.