gecko/layout/reftests/css-gradients/repeated-final-stop-1-ref.html
Robert O'Callahan 3d5aab6c0e Bug 634982. Reftest. r=jrmuizel
--HG--
extra : rebase_source : 1ffa269abef40fc16b08c6a34c6bb87906112a82
2013-12-13 01:33:01 +13:00

20 lines
282 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<style>
html {
background: white;
}
div {
background: -moz-linear-gradient(left, 0 white, 100% orange);
background: linear-gradient(left, 0 white, 100% orange);
height: 100px;
width: 50%;
}
</style>
</head>
<body>
<div></div>
</body>
</html>