Steven Lambert
Steven Lambert
Would like to be able to create a fixed width/height Text (example: match the same size of other items in a grid) and also be able to set the vertical...
The `addToDom` function has a slight bug in it in that when it [tries to find `[data-kontra]` nodes](https://github.com/straker/kontra/blob/main/src/utils.js#L19) it does so assuming that they can only be a direct child...
For interactive components like `Button` I created a mirrored HTML node and added it to the DOM in order to support screen readers and get keyboard navigation. I added them...
We recently discovered that when running WebdriverIO inside an Electron app it is not able to create a [new browser window](https://github.com/dequelabs/axe-core-npm/blob/develop/packages/webdriverio/src/index.ts#L357). The code fails with the error message `"No such...
The CLI test break is related to the Chrome 120 update. The changelog from 119->120 [appears to have changed](https://chromium.googlesource.com/chromium/src/+log/119.0.6045.200..120.0.6099.63?pretty=fuller&n=10000), specifically [this commit](https://chromium.googlesource.com/chromium/src/+/754e352f87a16403a10f90d0410b6420fcdcbf39); [The diff](https://chromium.googlesource.com/chromium/src/+/754e352f87a16403a10f90d0410b6420fcdcbf39%5E%21/#F0) suggests its no longer `chrome` but...
The tag for each release is not using the correct commit. It looks like it might be using the commit right before the release as the tagged commit where it...
From https://github.com/dequelabs/axe-core-npm/pull/831, we've decided we should export the entire `axe` type for uses to have available. Most importantly they need the `AxeResults` type for the return of `axeBuilder.anayze()`, which also...
As part of [the conversion to npm workspaces](https://github.com/dequelabs/axe-core-npm/pull/687) we had to [pin the version of Puppeteer](https://github.com/dequelabs/axe-core-npm/pull/687#discussion_r1322080204) as the latest version logs out a warning about using the new `headless: new`...
As part of [the conversion to npm workspaces](https://github.com/dequelabs/axe-core-npm/pull/687) we had to skip the chromedriver path test since where the node_modules directory is installed locally changed (moved up to the root)....
For some reason when running our webdriverjs test suite, it leaves 2 errant Chrome processes open. We should investigate why that is as each time your run the suite it...