testing/web-platform/tests/css/css-backgrounds/background-position/background-position-bottom-right-repeat-round.html
author Cosmin Sabou <csabou@mozilla.com>
Sat, 12 Jul 2025 09:18:08 +0300 (6 hours ago)
changeset 796290 5ad1f0c58c82bdfa2f42fed870bbe143465398d0
parent 688170 06da19643638879471ce7c95fb1fb4494e622a85
permissions -rw-r--r--
Revert "Bug 1977019 - re-enable hw video decoding testing. r=media-playback-reviewers,jolin" for causing win mda failures on test_hw_video_decoding.html This reverts commit 158474bdc0cf585b701bc47921f0a7d84f7bb84d.
<!doctype html>
<title>background-position with 'bottom' and 'right' edge keywords with background-repeat 'round'</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-position">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-repeat">
<link rel="match" href="reference/background-position-bottom-right-repeat-round-ref.html">
<style>
  #target {
    width: 100px;
    height: 100px;
    background-image: linear-gradient(45deg, lime, green);
    background-repeat: round;
    background-size: 51px 51px;
    background-position: right 25% bottom 25%;
  }
</style>
<div id="target"></div>