testing/web-platform/tests/css/css-backgrounds/background-repeat-space-9.html
author Lando <lando@lando.test>
Fri, 11 Jul 2025 04:32:24 +0000 (4 hours ago)
changeset 796014 f14d1c1492bc6791542a001365abbca4bd9b28db
parent 757717 47cf4799bfc8a6673672c64df8d2cd1bea1129d0
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS Background: background-repeat: background image space</title>
    <link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com">
    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
    <link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
    <link rel="match" href="background-repeat-space-9-ref.html">
    <meta name="assert" content="Test checks whether background-repeat: 'space' works correctly or not.">
    <meta name="fuzzy" content="maxDifference=0-52; totalPixels=0-1680">
    <style type="text/css">
      .outer {
        width: 106px;
        height: 96px;
        border: 1px solid black;
        background-image: url(support/aqua-yellow-32x32.png);
        background-repeat: space;
      }
    </style>
  </head>
  <body>
    <div class="outer"></div>
  </body>
</html>