summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/css-filters/drop-shadow-negative-offset-ref.html
blob: bf04c1d511fa745f8199cf57d907b47590fe4c50 (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 Filters: Negative Drop Shadow Offset</title>
  <link rel="author" title="Max Vujovic" href="mailto:mvujovic@adobe.com">
  <style type="text/css">
    #target {
      filter: url(#drop-shadow);
      background-color: #00f;
      position: relative;
      top: 20px;
      left: 20px;
      width: 100px;
      height: 100px;
    }
  </style>
</head>
<body>
  <p>You should see a blue square with a green drop shadow in its top left corner.</p>
  <div id="target"></div>
  <svg width="0" height="0">
    <filter id="drop-shadow" x="-50" y="-50" width="200" height="200" filterUnits="userSpaceOnUse">
      <feDropShadow dx="-10" dy="-10" stdDeviation="3" flood-color="#0f0" color-interpolation-filters="sRGB"/>
    </filter>
  </svg>
</body>
</html>