summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/clipPath-css-transform.html
blob: 19c5cd1711f601c3274eb537d99db4c85c637805 (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
<style>
#rec1 {
  transform: translate(15px,15px) scale(2,4);
}
#rec3 {
  transform: translate(100px,100px) scale(2,4);
}
#clipPath3 {
  transform: translate(100px,100px);
}
</style>
<svg style="width: 400px; height: 400px; border: 1px solid red">
  <defs>
    <clipPath id="clipPath1">
      <rect id="rec1" width="20px" height="10px" />
      <rect id="rec2" width="20px" height="10px" />
    </clipPath>
    <clipPath id="clipPath2">
      <rect id="rec3" width="20px" height="10px" />
    </clipPath>
    <clipPath id="clipPath3">
      <rect id="rec4" x="200px" y="200px" width="40px" height="40px" />
    </clipPath>
  </defs>

  <circle cx="25px" cy="25px" r="20px" fill="skyblue" clip-path="url(#clipPath1)" />
  <circle cx="125px" cy="125px" r="20px" fill="skyblue" clip-path="url(#clipPath2)" />
  <circle cx="225px" cy="225px" r="20px" fill="skyblue" clip-path="url(#clipPath3)" />
</svg>