testing/web-platform/tests/css/css-backgrounds/border-radius-clipping-with-transform-001-ref.html
author Emilio Cobos Álvarez <emilio@crisal.io>
Thu, 10 Jul 2025 09:08:54 +0000 (5 hours ago)
changeset 795952 1d422913e1cb1658224a2d269f8e4c9e80032d29
parent 603311 b27fe6327cd8587c8b9fa02169f96ef55871edd4
permissions -rw-r--r--
Bug 1976623 - Create drag popups eagerly for now. r=tnikkel,layout-reviewers Trivially restores pre-regression behavior, for now. Differential Revision: https://phabricator.services.mozilla.com/D256769
<!DOCTYPE html>
<title>CSS Test (Backgrounds): border-radius clipping on overflow:hidden with transforms</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<style>

#outer {
  border: 10px solid #000;
  border-radius: 60px;
  width: 200px;
  height: 200px;
  background: blue;
  position: absolute;
  top: 10px;
  left: 10px;
}

#coverinner, #coverouter {
  position: absolute;
  border: 4px solid fuchsia;
  filter: grayscale(30%);
}

#coverinner {
  width: 196px;
  height: 196px;
  top: 18px;
  left: 18px;
  border-radius: 52px;
}

#coverouter {
  width: 216px;
  height: 216px;
  top: 8px;
  left: 8px;
  border-radius: 62px;
}

</style>

<div id="outer">
</div>
<div id="coverinner">
</div>
<div id="coverouter">
</div>