-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathhighlight-cascade-011.html
More file actions
31 lines (30 loc) · 1.39 KB
/
highlight-cascade-011.html
File metadata and controls
31 lines (30 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<meta charset="utf-8">
<title>CSS Pseudo-Elements Test: highlight cascade: inheritance of custom properties</title>
<link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-pseudo-4/#highlight-cascade">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/6641">
<meta name="assert" content="This test verifies that custom properties used in highlight pseudos are taken from the highlight and originating element.">
<script src="../support/selections.js"></script>
<link rel="stylesheet" href="../support/highlights.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
:root::selection {
--background-color: red;
}
div::selection {
background-color: var(--background-color, green);
}
</style>
<body>
<div>Some text</div>
</body>
<script>
selectNodeContents(document.querySelector("body"));
const div_selection = getComputedStyle(document.querySelector("div"), "::selection");
test(() => void assert_equals(div_selection.backgroundColor, "rgb(0, 128, 0)"),
"div::selection does not inherit custom properties from the highlight parent");
test(() => void assert_equals(div_selection.getPropertyValue("--background-color"), ""),
"--background-color has no computed value on div::selection");
</script>