summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/border-radius-clipping-with-transform-001.html
blob: b2187cf07abfe0b6b7ee24f35f35a57a5bf58789 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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/">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1207151">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#corner-clipping">
<link rel="match" href="border-radius-clipping-with-transform-001-ref.html">
<meta name="assert" content="The content should be clipped correctly, despite the interesting transforms.">
<meta name="fuzzy" content="maxDifference=0-48; totalPixels=0-6783" />
<style>

#outer {
  border: 10px solid #000;
  border-radius: 60px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  transform: rotate(90deg);
  position: absolute;
  top: 10px;
  left: 10px;
}
#inner {
  width: 100%;
  height: 100%;
  background: blue;
  transform: translateZ(0);
}

#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 id="inner">
  </div>
</div>
<div id="coverinner">
</div>
<div id="coverouter">
</div>