summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/container-queries/pseudo-elements-011.html
blob: 26dabbe1dfe58a3350ec4fbf9a9671943a174a8d (plain)
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
<!DOCTYPE html>
<title>CSS Container Queries Test: ::highlight pseudo element on size container</title>
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#query-container">
<link rel="match" href="pseudo-elements-010-ref.html">
<style>
  #container {
    width: 500px;
    container-type: inline-size;
  }
  #container::highlight(hi) {
    color: red;
    background: transparent;
  }
  @container (width >= 400px) {
    #container::highlight(hi) {
      color: green;
      background: transparent;
    }
  }
</style>
<div id="container">Highlight</div>
<script>
  let highlight_range = document.createRange();
  highlight_range.selectNode(container);
  CSS.highlights.set("hi", new Highlight(highlight_range));
</script>