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
Fix any of the following: Element has a tabindex greater than 0
At least one check must have passed
CheckResult ID: tabindexImpact: seriousMessage: Element has a tabindex greater than 0
Can view the element in question on https://colab.research.google.com by opening Edit -> Find and replace...
although if I do that and run axe via a Chrome extension, it's not triggering this error. It only seems to from axe-webdriver.
axe-core version: 2.5
axe-webdriver, extension or other integration version: 2.0
For Tooling issues:
- Platform: Linux
The text was updated successfully, but these errors were encountered:
The bug is that paper-inputredefines the tabIndex property of the element, so when we check for node.tabIndex <= 0, it returns undefined instead of a value. I'm not sure if this is a Polymer bug or something we have to start accounting for (custom elements overriding native properties of the HTMLElement).
Conclusion. This is a bug in paper-input, which does not allow accessing .tabIndex. That said, to avoid this type of issue, I do think we should drop using properties to get at attribute values. Using getAttribute() is more reliable, we've been burned by this before, so let's just solve it.
Seems to be a recurrence of #1714
Can view the element in question on
https://colab.research.google.com by opening Edit -> Find and replace...
although if I do that and run axe via a Chrome extension, it's not triggering this error. It only seems to from axe-webdriver.
The text was updated successfully, but these errors were encountered: