We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e120e8d commit 8f76f96Copy full SHA for 8f76f96
src/lib/core/a11y/interactivity-checker.ts
@@ -160,7 +160,7 @@ function isAnchorWithHref(element: HTMLElement): boolean {
160
161
/** Gets whether an element is an input element. */
162
function isInputElement(element: HTMLElement): element is HTMLInputElement {
163
- return element.nodeName == 'input';
+ return element.nodeName.toLowerCase() == 'input';
164
}
165
166
/** Gets whether an element is an anchor element. */
0 commit comments