testing/web-platform/tests/css/css-backgrounds/background-size-one-value-1x1-image.html
author Lando <lando@lando.test>
Fri, 11 Jul 2025 09:11:47 +0000 (3 hours ago)
changeset 796052 0a0cf87651274d2f86228467e41dafd62a510749
parent 446986 2cf0908137dffa2af5418437f6326a788904529e
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE html>
<html>
<head>
    <title>CSS Background Test: A single size value with a 1x1 image should work as intended</title>
    <link rel="author" title="schenney" href="mailto:schenney@chromium.org">
    <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-size">
    <link rel="match" href="reference/background-size-one-value-1x1-image-ref.html">
    <style type="text/css">
    .backgroundSize{
        background: url("support/1x1-green.png");
        background-size: 50%;
        background-repeat: repeat-y;
        height: 100px;
    }
    </style>
</head>
<body>
    <div style="background: #7957d5">
        <div class="backgroundSize"></div>
    </div>
</body>
</html>