summaryrefslogtreecommitdiffstats
path: root/layout/reftests/image-element/gradient-html-01.html
blob: f6991cb6830694161b1963ae01f6ae49bb562138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/licenses/publicdomain/
-->
<!DOCTYPE html>
<html>
<body style="margin:0">
  <div style="width:100px; height:100px; background:-moz-element(#g);"></div>
  <svg>
    <linearGradient id="g" x2="0" y2="1">
      <stop stop-color="lime" offset="0"></stop>
      <stop stop-color="lime" stop-opacity="0" offset="1"></stop>
    </linearGradient>
  </svg>
</body>
</html>