wpt / css / css-viewport / zoom / zoom-pseudo-image.html

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

/css/css-viewport/zoom/zoom-pseudo-image.html

<!doctype html>
<meta charset=utf-8>
<link rel="help" href="https://drafts.csswg.org/css-viewport/#zoom-property">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1979533">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<link rel="match" href="zoom-pseudo-image-ref.html">
<style>
.icon {
  width: 200px;
  height: 200px;
  background-color: blue;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
}

.icon::before {
  display: block;
  content: url(/images/green.png);
  width: 100px;
  height: 100px;
  background-color: purple;
}

.zoom {
  zoom: 2;
}
</style>
<div class="icon"></div>
<div class="icon zoom"></div>

/css/css-viewport/zoom/zoom-pseudo-image-ref.html

<!doctype html>
<meta charset=utf-8>
<style>
.icon {
  width: 200px;
  height: 200px;
  background-color: blue;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
}

.img-wrapper {
  display: block;
  width: 100px;
  height: 100px;
  background-color: purple;
}

.zoom {
  zoom: 2;
}
</style>
<div class="icon">
  <div class="img-wrapper">
    <img src="/images/green.png">
  </div>
</div>
<div class="icon zoom">
  <div class="img-wrapper">
    <img src="/images/green.png">
  </div>
</div>