chromium/third_party/blink/web_tests/external/wpt/forced-colors-mode/forced-colors-mode-33.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Test forced colors mode :visited colors</title>
<link rel="help" href="https://www.w3.org/TR/css-color-adjust-1/#forced-colors-properties">
<link rel=match href="forced-colors-mode-33-ref.html">
<style>
  a {
    background-color: white;
    border: 1px solid;
    text-decoration: line-through;
    text-emphasis: '*';
    -webkit-text-emphasis: '*';
  }
  a:visited {
    background-color: orange;
    border: yellow;
    color: red;
    text-decoration-color: purple;
    text-emphasis: blue;
    -webkit-text-emphasis: blue;
  }
</style>
<a href="">Visited link.</a>