summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/mediaqueries/prefers-color-scheme-svg-as-image-ref.html
blob: 012513ef9fafbd967b317f96c33492e049c6aeb7 (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: 32px;
    width: 32px;
  }
  @media (prefers-color-scheme: dark) {
    div {
      background-color: purple;
    }
  }
</style>
<p>There should be a purple square below when the preferred color-scheme is dark, and blue otherwise.</p>
<div></div>