Matan Borenkraout
Matan Borenkraout
@eps1lon, just wondering if there's really a need to climb up the tree or just the immediate parent is enough , so instead of the [implementation we have](https://github.com/testing-library/dom-testing-library/blob/main/src/queries/title.ts#L17), we can...
Hi @petermarcoen, thanks for taking the time and effort to open this one :) I'm not sure I'm 100% right but I believe that the issue here is that `[role="status"]`...
If you want to get the element by it's text, why not just use `getByText`? You can then verify that it has the correct role. I'm just not sure that...
> Would this allow for any custom filter method (not just a matcher)? I have use-cases for asynchronously waiting for certain DOM elements to have their attributes updated. This is...
@eps1lon I just want to be sure I understand correctly before starting to implement this. We'll add a `modal: true` flag to the filter options and if we have an...
Thanks @eps1lon.. So in the `aria-modal` [spec](https://www.w3.org/TR/wai-aria-1.1/#aria-modal) it states this: > Assistive technologies **MAY** limit navigation to the modal element's contents. If focus moves to an element outside the modal...
Hi @xiduzo! Thanks for opening this one :) Unfortunately, the [`mark` role is a part of WAI-ARIA 1.3](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/mark_role#specifications) which is still being drafted and we only support WAI-ARIA 1.2 at...
Hi @nphmuller, thanks for taking the time to open this! I found two contradicting approaches about this in the spec: https://w3c.github.io/html-aam/#input-type-text-input-type-password-input-type-search-input-type-tel-input-type-email-input-type-url-and-textarea-element-accessible-name-computation But as far as I know, and @eps1lon correct...
> I seem to remember putting some notes into https://github.com/eps1lon/dom-accessibility-api concerning placeholder. So I would suggest doing some digging there. Then we need to double check what `accname` would say...
@eps1lon am I missing something? it looks like this one is supported in [Aria 1.1](https://www.w3.org/TR/wai-aria-1.1/#aria-level) and the change on our end seems quite straightforwards since there's no computation needed, just...