summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-gradients/scaled-color-stop-position-ref.html
blob: ce080931f49c87f5b55bb4970dc313cd4ad6a18c (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
<!--
     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 reference</title>
  <style type="text/css">
#outer
{
  border: 1px solid black;
  width: 600px; height: 300px;
}
#inner
{
  width: 400px; height: 300px;
  /* 250px stop is halfway along 500px diagonal */
  background-image: linear-gradient(to bottom right, lime 0%, teal 250px, black 100%);
}
  </style>
</head>
<body>
<div id="outer"><div id="inner"></div></div>
</body>
</html>