summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-nesting/nest-containing-forgiving-ref.html
blob: 8fb7c8674a534aa6e68501916616304064696145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<title>Nest-containing in forgiving parsing</title>
<style>
  .test {
    background-color: green;
    width: 100px;
    height: 100px;
    display: grid;
  }

  body * + * {
    margin-top: 8px;
  }
</style>
<body>
  <p>Tests pass if <strong>block is green</strong></p>
  <div class="test"></div>
  <div class="test"></div>
</body>