Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/highlight-painting-currentcolor-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Pseudo-Elements Test: ‘currentColor’ in ‘color’ and ‘background-color’ of overlapping highlights</title>
<link rel="author" title="Delan Azabani" href="mailto:dazabani@igalia.com">
<meta name="assert" content="This test checks that ::selection takes the ‘color’ of the next active highlight below when resolving ‘currentColor’ in ‘color’ and ‘background-color’.">
<link rel="match" href="highlight-painting-currentcolor-002-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: currentColor;
}
</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)));
selectNodeContents(target);
</script>