Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/interestfor/interestfor-pseudo-element-quotes-appearance.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="match" href="interestfor-pseudo-element-quotes-appearance-ref.html">
<div class="container custom-quotes">
<button interestfor="target">Button 1</button>
</div>
<div class="container custom-quotes">
<a href="#" interestfor="target">Link 1</a>
</div>
<div class="container french-quotes">
<button interestfor="target">Button 2</button>
</div>
<div id="target"></div>
<style>
.container {
font-family: monospace;
font-size: 14px;
margin-bottom: 10px;
border: 1px solid gray;
padding: 5px;
}
button, a {
appearance: none;
font: inherit;
color: inherit;
border: 1px solid black;
padding: 2px 6px;
margin: 0;
user-select: none;
}
.custom-quotes {
quotes: "“" "”";
}
.french-quotes {
quotes: "«" "»";
}
[interestfor]::interest-button {
min-inline-size: 0;
min-block-size: 0;
text-align: left;
vertical-align: baseline;
content: " " open-quote '\24D8' close-quote;
}
</style>