summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/commands/legend/focusable-legend-manual.html
blob: e2880a77bf9592776ce58bb0fbbfcd1df2581b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>Focusable legend</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../common/accesskey.js></script>
<p>Press the access key combination for "a". <kbd></kbd></p>
<fieldset>
 <legend tabindex=0 onclick="fail('unexpected click event on legend')"
                    onfocus="fail('legend was focused')" accesskey=a>
  legend
  <input onfocus="pass()">
 </legend>
 <input onfocus="fail('input after legend was focused')">
</fieldset>