summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-gradients/repeated-final-stop-1.html
blob: 35cc594b63ddf4cebbe187061124575daa5c4f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<html>
<head>
<style>
html {
  background: white;
}
div {
  background: -moz-linear-gradient(left, 0 white, 50% orange, 50% white);
  background: linear-gradient(left, 0 white, 50% orange, 50% white);
  height: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>