summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/nested-filter-ref.html
blob: 70ee403d7fb63b1c0bde22b9d682bf35a21bef56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html style="background: red">
<body>
  <svg height="100px" width="100px">
    <g transform="translate(0, 25)">>
      <defs>
        <mask id="m" maskUnits="userSpaceOnUse">
          <rect x=10 y=10 width=51 height=45 fill="white"></rect>
        </mask>
      </defs>
      <rect fill="yellow" x=0 y=0 width=100 height=100 mask="url(#m)"></rect>
    </g>
  </svg>
</body>
</html>