gecko-dev/layout/reftests/css-visited/caret-color-on-visited-1.html

27 строки
408 B
HTML

<!DOCTYPE html>
<style>
@font-face {
font-family: Ahem;
src: url(Ahem.ttf);
}
a {
caret-color: red;
}
a:visited {
caret-color: green;
}
textarea {
caret-color: inherit;
font: 16px/1 Ahem;
outline: none;
border: 0 none;
resize: none;
padding: 0;
margin: 0;
}
</style>
<a href="visited-page.html"><textarea></textarea></a>
<script>
document.querySelector('textarea').focus();
</script>