mirror of
https://github.com/servo/servo
synced 2026-05-12 18:06:32 +02:00
21 lines
545 B
HTML
21 lines
545 B
HTML
<!doctype html>
|
|
<title>legend</title>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<script>
|
|
const t = async_test();
|
|
</script>
|
|
<fieldset>
|
|
<legend onfocus="t.unreached_func('legend was focused')()">
|
|
legend
|
|
<input onfocus="t.unreached_func('input in legend was focused')();">
|
|
</legend>
|
|
<input onfocus="t.unreached_func('input after legend was focused')();">
|
|
</fieldset>
|
|
<script>
|
|
document.querySelector('legend').focus();
|
|
t.step_timeout(() => {
|
|
t.done();
|
|
}, 500);
|
|
</script>
|