tenfourfox/layout/reftests/css-gradients/repeated-final-stop-1.html

19 lines
288 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>