Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/the-button-element/interest-target/interesttarget-outline-appearance.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8" />
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="mismatch" href="interesttarget-outline-appearance-ref.html">
<button interesttarget=target>Interesttarget Button</button>
<style>
/* Outline style should apply even when the element doesn't have interest. */
:has-interest { background-color: red; }
</style>
<script>
document.querySelector('[interesttarget]').focus();
</script>