summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color-adjust/rendering/dark-color-scheme/svg-as-image-ref.html
blob: 1ff9d88f302f90dbe4b708657e9fb0bc1378453a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<head>
  <title>prefers-color-scheme inside an SVG image</title>
  <link rel="help" href="https://www.w3.org/TR/mediaqueries-5/#descdef-media-prefers-color-scheme">
</head>
<style>
  div {
    background-color: blue;
    height: 100px;
    width: 100px;
  }
  @media (prefers-color-scheme: dark) {
    div {
      background-color: green;
    }
  }
</style>
<p>There should be green square below when the preferred color-scheme is dark, and blue otherwise.</p>
<div></div>