chromium/third_party/blink/web_tests/external/wpt/css/css-pseudo/highlight-painting-currentcolor-003a.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘text-decoration-color’ of overlapping highlights</title>
<link rel="author" title="Delan Azabani" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#highlight-painting">
<meta name="assert" content="This test checks that ::selection takes the ‘color’ of the next active highlight below when resolving ‘currentColor’ in ‘color’ and ‘text-decoration-color’.">
<link rel="match" href="highlight-painting-currentcolor-003a-ref.html">
<meta name="fuzzy" content="0-120;0-10">
<link rel="stylesheet" href="support/highlights.css">
<script src="support/selections.js"></script>
<style>
  ::highlight(a) {
    color: yellow;
    background-color: blue;
  }
  ::highlight(b) {
    color: lime;
    background-color: blue;
  }
  ::selection {
    color: currentColor;
    background-color: black;
    text-decoration: /* currentColor */ underline;
  }
</style>
<div class="highlight_reftest" id="target">test test</div>
<script>
  CSS.highlights.set("b", new Highlight(createRangeForTextOnly(target, 0, 4)));
  CSS.highlights.set("a", new Highlight(createRangeForTextOnly(target, 5, 9)));
  selectRangeWith(range => {
    range.selectNodeContents(target);
    range.setStart(target.firstChild, 2);
    range.setEnd(target.firstChild, 7);
  });
</script>