wpt / css / css-images / image-light-dark.html

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

/css/css-images/image-light-dark.html

<!doctype html>
<link rel="help" href="https://drafts.csswg.org/css-color-5/#light-dark">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1966890">
<link rel="match" href="image-light-dark-ref.html">
<style>
  div:empty {
    width: 100px;
    height: 100px;
    background-image: light-dark(
      url("/images/green.png"),
      url("/images/red.png")
    );
  }
</style>
<div style="color-scheme: dark"></div>
<div style="color-scheme: light"></div>
<div style="color-scheme: dark"><div></div></div>
<div style="color-scheme: light"><div></div></div>

/css/css-images/image-light-dark-ref.html

<!doctype html>
<style>
  div {
    width: 100px;
    height: 100px;
    &.light {
      background-image: url("/images/green.png");
    }
    &.dark {
      background-image: url("/images/red.png");
    }
  }
</style>
<div class="dark"></div>
<div class="light"></div>
<div class="dark"></div>
<div class="light"></div>