diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-highlight-api/painting/custom-highlight-painting-inheritance-002.html')
-rw-r--r-- | testing/web-platform/tests/css/css-highlight-api/painting/custom-highlight-painting-inheritance-002.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-highlight-api/painting/custom-highlight-painting-inheritance-002.html b/testing/web-platform/tests/css/css-highlight-api/painting/custom-highlight-painting-inheritance-002.html new file mode 100644 index 0000000000..fbed69392c --- /dev/null +++ b/testing/web-platform/tests/css/css-highlight-api/painting/custom-highlight-painting-inheritance-002.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<meta charset="UTF-8"> +<title>CSS Highlight API Test: Inheritance</title> +<link rel="help" href="https://drafts.csswg.org/css-highlight-api-1/"> +<link rel="match" href="custom-highlight-painting-inheritance-001-ref.html"> +<meta name="assert" value="Highlighted elements inherit style properties from their parent even if there's not a ::highlight selector directly applying to them or their parent."> +<style> + div::highlight(div-highlight) { + background-color: green; + } +</style> +<body> +<div>There should be only one green rectangle below from [ to ]:</div> +<div id="target">[<span> <strong> </strong> </span>]</div> +<script> + const node = document.getElementById("target"); + let r = new Range(); + r.setStart(node, 1); + r.setEnd(node, 2); + CSS.highlights.set("div-highlight", new Highlight(r)); +</script>
\ No newline at end of file |