wpt / css / mediaqueries / prefers-color-scheme-svg-as-image.html

Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/mediaqueries/prefers-color-scheme-svg-as-image.html

<!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">
  <link rel="match" href="prefers-color-scheme-svg-as-image-ref.html">
</head>
<p>There should be a purple square below when the preferred color-scheme is dark, and blue otherwise.</p>
<img src='resources/prefers-color-scheme.svg'>

/css/mediaqueries/prefers-color-scheme-svg-as-image-ref.html

<!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>