Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-select-element/customizable-select/focus-ring-rendering.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=match href="focus-ring-rendering-ref.html">
<style>
select {
appearance: base-select;
}
</style>
<select id="target">
<option>Option 1</option>
</select>
<script>
onload = () => target.focus();
</script>