focusable-legend-manual.html (525B)
1 <!doctype html> 2 <title>Focusable legend</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 <fieldset> 8 <legend tabindex=0 onclick="fail('unexpected click event on legend')" 9 onfocus="fail('legend was focused')" accesskey=a> 10 legend 11 <input onfocus="pass()"> 12 </legend> 13 <input onfocus="fail('input after legend was focused')"> 14 </fieldset>