layout/reftests/border-radius/clipping-2.html
author Tom Schuster <tschuster@mozilla.com>
Thu, 17 Jul 2025 07:01:33 +0000 (10 hours ago)
changeset 796956 2732dfd8c3b2071a053c85819299033f50ec5d48
parent 52297 c1cc7b565dc740206b5b46b613f99da334195329
permissions -rw-r--r--
Bug 1977645 - Remove svg.use-element.data-url-href.allowed pref. r=longsonr Differential Revision: https://phabricator.services.mozilla.com/D257534
<!doctype html>
<html><head>
<title>Border clipping</title>
<style>
.div1 { width: 50px; height: 50px;
      border: 4px dotted black; 
      border-radius: 10px;
      position: fixed;
      background: red;
      left: 50px;
      top: 50px;
      background-clip: padding-box;
}

.div2 { width: 50px; height: 50px;
      border: 4px dotted black; 
      border-radius: 10px;
      position: fixed;
      background: red;
      left: 50px;
      top: 140px;
      background-clip: border-box;
}

</style>
</head>
<body>
  <div class="div1"/>
  <div class="div2"/>
</body></html>