Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-highlight-api/painting/custom-highlight-painting-inheritance-001.html
<!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 if they're not set"> <style> div::highlight(div-highlight) { background-color: green; color: red; } span::highlight(span-highlight) { color: blue; } </style> <body> <div>There should be only one green rectangle below from [ to ]:</div> <div id="target">[<span> <strong> </strong> </span>]</div> <script> let r = new Range(); const node = document.getElementById("target"); r.setStart(node, 1); r.setEnd(node, 2); CSS.highlights.set("div-highlight", new Highlight(r)); CSS.highlights.set("span-highlight", new Highlight(r)); </script>
/css/css-highlight-api/painting/custom-highlight-painting-inheritance-001-ref.html
<!DOCTYPE html> <meta charset="UTF-8"> <style> span { background-color: green; } </style> <body> <div>There should be only one green rectangle below from [ to ]:</div> <div>[<span> <strong> </strong> </span>]</div>