blob: ec3b0166b7c88b31ec15fb4c8c961df3d0fdd340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 1274624: Clamped colour stop interpolation</title>
<style type="text/css">
div {
background-image: linear-gradient(90deg, rgba(0, 0, 255, 0.6), rgba(0, 0, 255, 0.4));
background-size: 100px 100px;
width: 400px;
height: 400px;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>
|