summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/paint-on-maskLayer-1a.html
blob: 88c39177cb40413cfe9df65ec8dba30e60387784 (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
<!DOCTYPE html>
<html>
<title>Paint clip-path onto mask layer</title>
<style type="text/css">
  #inner {
    width: 200px;
    height: 200px;
    box-sizing:border-box;
    background: blue;
    /* make clip-path pained on mask layer */
    border: 1px solid transparent;
    will-change: transform;
  }

  #outer {
    width: 200px;
    height: 200px;
    clip-path: url(#path);
    /* make it fixed so that inner div has different AGR with outter div */
    position: fixed;
  }
</style>
<div id="outer">
  <div id="inner"></div>
</div>

<svg height="0">
  <defs>
    <clipPath id="path">
      <rect x="0" y="0" width="100" height="100"/>
    </clipPath>
  </defs>
</svg>
</html>