We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e04c72 commit 44c5e6eCopy full SHA for 44c5e6e
1 file changed
tests/lib/rules/template-no-noninteractive-tabindex.js
@@ -75,6 +75,8 @@ ruleTester.run('template-no-noninteractive-tabindex', rule, {
75
'<template><span tabindex="-1">text</span></template>',
76
'<template><section tabindex="-1">scroll target</section></template>',
77
'<template><div tabindex={{-1}}></div></template>',
78
+ // GlimmerConcatStatement form (quoted-mustache with single number-literal part).
79
+ '<template><div tabindex="{{-1}}"></div></template>',
80
81
// WAI-ARIA 1.2 §4.1 role fallback: unrecognized first token is skipped,
82
// the next recognized token applies. `button` is interactive → allowed.
0 commit comments