summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/css-svg-filter-chains/css-filter-first-ref.html
blob: 838eeaf4b9714c3c2311eceac6bd3dd05db28521 (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
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<html>
<head>
  <title>CSS and SVG Filter Chains: CSS Filter as First Filter</title>
  <link rel="author" title="Max Vujovic" href="mailto:mvujovic@adobe.com">
  <style type="text/css">
    #target {
      filter: url(#blur-and-red-to-green);
      background-color: #f00;
      width: 100px;
      height: 100px;
    }
  </style>
</head>
<body>
  <p>You should see a blurred green square.</p>
  <div id="target"></div>
  <svg width="0" height="0">
    <filter id="blur-and-red-to-green" x="-50" y="-50" width="200" height="200" filterUnits="userSpaceOnUse">
      <!-- Blur the red square. -->
      <feGaussianBlur stdDeviation="3" color-interpolation-filters="sRGB"/>
      <!-- Turn the red square into a green square. -->
      <feColorMatrix type="hueRotate" values="90" color-interpolation-filters="sRGB"/>
    </filter>
  </svg>
</body>
</html>