When does the checkbox name repeat?
label
Play with two balloons or just one.
<div tabindex="-1" id="container-421-482-716-792-783-766"> <input id="421-482-716-792-783-766" tabindex="0" type="checkbox" style="width: 1px;"> <label tabindex="-1" id="label-421-482-716-792-783-766" for="421-482-716-792-783-766">Two-Balloon Experiments</label> <p tabindex="-1" id="description-421-482-716-792-783-766">Play with two balloons or just one.</p> </div>
aria-label
aria-label
.Play with two balloons or just one.
<div tabindex="-1"> <input id="eg-03" tabindex="0" type="checkbox" aria-label="Two-Balloon Experiments"> <p tabindex="-1" id="description-eg-03">Play with two balloons or just one.</p> </div>
input
within a label
element in Scenery.Play with two balloons or just one.
<div> <label tabindex="-1" id="label-eg-05" for="eg-05">Two-Balloon Experiments<input id="eg-05" tabindex="0" type="checkbox"></label> <p tabindex="-1" id="description-eg-05">Play with two balloons or just one.</p> </div>