testing/web-platform/tests/css/css-backgrounds/background-repeat-space-4.html
author Serban Stanca <sstanca@mozilla.com>
Mon, 14 Jul 2025 00:37:50 +0300 (115 minutes ago)
changeset 796395 57c30f1adca5fb5ccd4a9a09192c41e207e28d88
parent 660844 f7a857e0f4b49fdb1e872db2f8d6ea530d551687
permissions -rw-r--r--
Revert "Bug 1950748 part 3: Don't return a caret inside an editor when no editor is focused. r=morgan" as requested for causing accessibility crashes (bug 1977012). This reverts commit aaf970807d281c28c1e937491719d996cb11648a. This reverts commit f5f2e3cf4d34c2430372ba790d77620837d56b75. This reverts commit 5565c5899c32c0b0f5446561a21c5b6499fd44c6.
<!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-4-ref.html">
    <meta name="assert" content="Test checks whether background-repeat: 'repeat space' works correctly or not.">
    <meta name="fuzzy" content="maxDifference=0-52; totalPixels=0-7908">
    <style type="text/css">
      .outer {
        width: 96px;
        height: 106px;
        border: 1px solid black;
        background-image: url(support/aqua-yellow-32x32.png);
        background-repeat: repeat space;
      }
      .outer_graident {
        width: 96px;
        height: 106px;
        border: 1px solid black;
        background-size: 32px 32px;
        background-image: linear-gradient(to top left, red, green);
        background-repeat: repeat space;
      }
    </style>
  </head>
  <body>
    <div class="outer"></div>
    <div class="outer_graident"></div>
  </body>
</html>