Steven Lambert
Steven Lambert
Take the following example: ```html .overlap { position: absolute; top: 0; left: 0; width: 100px; height: 100px; } Hello World ``` This causes an incomplete result for color contrast because...
Recently our tests have been super flaky and timeout a lot. Going to start keeping track of the failing tests to see if I can figure out what's going on....
Consider the following code: ```html Button ``` This passes `aria-allowed-role`. But if you configure the rule to not allow implicit roles, it now fails ```js axe.configure({ checks: [ { id:...
The [isFocusable function](https://github.com/dequelabs/axe-core/blob/develop/lib/commons/dom/is-focusable.js) currently does not take into account negative tabindex (and for the default use case it shouldn't take into account negative tabindex). This causes us to pair the...
We had to remove the test so we could release 4.3.3. We need to put it back when we do a 4.4 release which will include the [appropriate fix](https://github.com/dequelabs/axe-core/pull/3102).
When changing the `opacity` value of a Sprite, if you set it to something below 0 the opacity is treated as invalid (by the browser) so renders the Sprite as...
I think I completely missed testing out pointer events with objects in a Scene that uses the `lookAt` function. Need to do some investigating.
I'd like to add the ability to do a few more things with grid: - [x] set individual row/column alignment. Right now that requires setting the children `align/justifySelf` property, but...