summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/container-queries/inner-first-line-non-matching.html
blob: 5f39124e514bcfc2b7293b6e36c7e3c3f4bbd5df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<title>CSS Container Queries Test: Non-matching ::first-line in @container</title>
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#container-queries">
<link rel="match" href="inner-first-line-non-matching-ref.html">
<style>
  #outer::first-line { color: green }
  @container (width > 99999px) {
    #inner::first-line { color: red }
  }
</style>
<div id="outer">
  <div id="inner">This text should be green.</div>
</div>