summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/reference/backdrop-filter-clip-rect-2-ref.html
blob: f12e88515fe9d3d845599273054803b7f782dd5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:Hironori.Fujii@sony.com">
<style>
.box {
  display: inline-block;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  border-radius: 10px 20px 30px 40px;
  border-width: 10px;
}
.no-bf > .box {
  background: black;
}
</style>
<div>
  <p>Expected: Same size rounded black boxes.</p>
</div>

<div class="no-bf">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>
<div class="no-bf">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>