summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-content/quotes-slot-scoping-ref.html
blob: e3e907cba589deb2e2c950a0a109cc639d0d16bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <head>
    <title>Quote scope Shadow DOM and SLOT</title>
    <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
    <link rel="help" href="https://www.w3.org/TR/css-content-3/#quote-values">
    <style>
      q {
        quotes: '1''1''2''2''3''3';
      }
    </style>
  </head>
  <body>
    <q>
      <q>Quote</q>
    </q>
  </body>
</html>