testing/web-platform/tests/css/css-backgrounds/background-image-cover-zoomed-1.html
author Gabriel Luong <gabriel.luong@gmail.com>
Sun, 13 Jul 2025 02:28:40 +0000 (7 hours ago)
changeset 796385 23185ed855a5b168943bde8ebe8ec946cd83f675
parent 522271 d2c2732863827d3b3f37c267586a1a7fe993196c
permissions -rw-r--r--
Bug 1972159 - Part 25: Enable Compose Homepage by default and remove associated settings and Nimbus flags r=android-reviewers,devota Differential Revision: https://phabricator.services.mozilla.com/D254598
<!DOCTYPE html>
<html>
<head>
    <title>CSS Background Test: background-size:cover should cover at zoom</title>
    <link rel="author" title="schenney" href="mailto:schenney@chromium.org">
    <link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#the-background-size">
    <link rel="match" href="reference/background-image-cover-zoomed-1-ref.html">
    <style>
      body {
        zoom: 80%;
      }
      body > div {
        background: #f00;
        width: 504px;
        height: 252px;
      }

      div > div {
        width: 504px;
        height: 252px;
        background-image: url(support/40px-wide-20px-tall-green-rect.png);
        background-size: cover;
        background-repeat: no-repeat;
      }
  </style>
</head>

<body>
  <div>
    <div>
    </div>
  </div>
</body>
</html>