no-fieldset-parent-manual.html (494B)
1 <!doctype html> 2 <title>No fieldset parent</title> 3 <script src=/resources/testharness.js></script> 4 <script src=/resources/testharnessreport.js></script> 5 <script src=../common/accesskey.js></script> 6 <p>Press the access key combination for "a". <kbd></kbd></p> 7 <legend accesskey=a> 8 legend 9 <input onfocus="fail('input in legend was focused')"> 10 </legend> 11 <input onfocus="fail('input after legend was focused')"> 12 <script> 13 onkeyup = e => { 14 if (e.keyCode === 65) { 15 pass(); 16 } 17 } 18 </script>