testing/web-platform/tests/css/css-backgrounds/background-clip-content-box-002.html
author Cosmin Sabou <csabou@mozilla.com>
Sat, 12 Jul 2025 09:18:08 +0300 (9 hours ago)
changeset 796290 5ad1f0c58c82bdfa2f42fed870bbe143465398d0
parent 577388 54f597e61518a03accab73fae39f26aef40626be
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-clip: content-box with fractional width/position</title>
<link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#the-background-clip">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
.back {
  background-color: red;
  width: 100px;
  display: flex;
}

.left {
  flex-basis: 50%;
  border-left: 5px solid green;
}

.right {
  flex-basis: 50%;
  border-right: 6px solid green;
}

.left, .right {
  background-color: green;
  background-clip: content-box;
  height: 100px;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div class="back">
  <div class="left"></div>
  <div class="right"></div>
</div>