summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-gradients/scaled-color-stop-position.html
blob: 897d909898d0e45493eb6873bd1ae6f2c90411bd (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
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<html>
<head>
  <title>Color stop positioning for scaled gradients as backgrounds</title>
  <style type="text/css">
#outer
{
  border: 1px solid black;
  width: 600px; height: 300px;
  /* 250px stop is halfway along 500px diagonal */
  background-image: linear-gradient(to bottom right, lime 0%, teal 250px, black 100%);
  background-size: 400px auto;
  background-repeat: no-repeat;
}
  </style>
</head>
<body>
<div id="outer"></div>
</body>
</html>