You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To see the differing behaviors between 0.5.6 and 0.5.16, change the dom-accessibility-api version from 0.5.16 to 0.5.14 or earlier and do a hard refresh (ctrl+shift+r in firefox).
Possible duplicate of #908 . I believe this is a regression from #893 .
Sample HTML:
<a href="/users/Ram"><div title="Ram"></div></a>
Sandbox: https://codesandbox.io/s/intelligent-khayyam-04l055?file=/src/index.test.js
To see the differing behaviors between 0.5.6 and 0.5.16, change the
dom-accessibility-api
version from0.5.16
to0.5.14
or earlier and do a hard refresh (ctrl+shift+r in firefox).Working stack (0.5.6):
Non-working stack (0.5.16):
Explanation:
2F -> get child node titles -> 2D -> fallback (
null
in 0.5.16,title
of node in0.5.6
).Reading through the spec, so I could be very wrong:
<a href="/users/Ram">
-> Get name from content (2F)<div title="Ram">
-> Check inner content; ifnull
or empty, then return 2I (thetitle="Ram"
).The text was updated successfully, but these errors were encountered: