We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Common practice for custom-elements present a problem where host would fail to be recognized as supported invoker but its template should be.
<div popover id="mypopover"></div> <my-button popovertoggletarget="mypopover"> #shadow-root <button>
the above will not trigger the popover to show / hide.
follow that, common better practice will be to delegate the attribute downwards to the focused button
<div popover id="mypopover"></div> <my-button popovertoggletarget="mypopover"> #shadow-root <button popovertoggletarget="mypopover">
but that won't return the popover element as it doesn't exist in the shadowed button root node (where it will be queried)
What about simply aria role="button". should that be supported?
role="button"
<span role="button">
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Common practice for custom-elements present a problem where host would fail to be recognized as supported invoker but its template should be.
the above will not trigger the popover to show / hide.
follow that, common better practice will be to delegate the attribute downwards to the focused button
but that won't return the popover element as it doesn't exist in the shadowed button root node (where it will be queried)
What about simply aria
role="button"
. should that be supported?The text was updated successfully, but these errors were encountered: