summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-gradients/linear-gradient-repeated.html
blob: 7e6e14dd565dcf043fefb2aeabef0aa627e72d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <head>
    <title>Bug 1274624: Linear gradient, repeated</title>
    <style type="text/css">
      div {
        background: linear-gradient(to top, red, blue);
        background-size: 100px 100px;
        background-position: 30px 30px;
        width: 400px;
        height: 400px;
      }
    </style>
  </head>
  <body>
    <div>
    </div>
  </body>
</html>