haikuwebkit/LayoutTests/fast/css/visited-link-stroke-color.html

19 lines
275 B
HTML

<html>
<head>
<style>
a {
font-size: 300%;
stroke-width: 2px;
stroke-color: green;
}
a:visited {
color: red;
stroke-color: blue;
}
</style>
</head>
<body>
<a href>Visited link with blue stroke color</a>
</body>
</html>